<!-- jQuery Fade for banners -->

$(document).ready(function(){

	$("img.a").hover(
		function() {
			$(this).animate({"opacity": "0"}, "slow");
		},
		function() {
			$(this).animate({"opacity": "1"}, "slow");
		});
});

<!-- jQuery open lightbox call -->

$(document).ready(function(){
	//different window opening classes - for new sizes add your details in here
	//$(".open-timeline").colorbox({width:"80%", height:"75%", iframe:true, opacity:0.80});
	//$(".open-timeline").colorbox({width:"800px", height:"525px", iframe:true, opacity:0.80});
	$(".open-timeline").colorbox({innerWidth:"750px", innerHeight:"450px", iframe:true, opacity:0.80});
	$(".open-video").colorbox({innerWidth:"400px", innerHeight:"290px", iframe:true, opacity:0.80});
	$(".open-video-fr").colorbox({innerWidth:"580px", innerHeight:"400px", iframe:true, opacity:0.80});
});


