jQuery().ready(function(){
						
	$('#expandingContainer').accordion({
			header: "h2",
			animated:"easeslide",
			autoHeight:false
	});
	
	 $("#digitalImages").jCarouselLite({
     btnNext: ".next",
     btnPrev: ".prev",
	 easing:"easeinout",
	 speed:400,
	 visible:1
    });
	 $("#digitalInfos").jCarouselLite({
     btnNext: ".next",
     btnPrev: ".prev",
	 easing:"backin",
	 speed:400,
	 visible:1,
	 vertical:true
    });
	 
	 $("#photographyImages").jCarouselLite({
     btnNext: ".fnext",
     btnPrev: ".fprev",
	 easing:"easeinout",
	 speed:400,
	 visible:1
    });
	 $("#photographyInfos").jCarouselLite({
     btnNext: ".fnext",
     btnPrev: ".fprev",
	 easing:"backin",
	 speed:400,
	 visible:1,
	 vertical:true
    });
	 
	 $("#printImages").jCarouselLite({
     btnNext: ".pnext",
     btnPrev: ".pprev",
	 easing:"easeinout",
	 speed:400,
	 visible:1
    });
		 
	$("#printInfos").jCarouselLite({
     btnNext: ".pnext",
     btnPrev: ".pprev",
	 easing:"backin",
	 speed:400,
	 visible:1,
	 vertical:true
    });
	
	$("a[rel=digital]").fancybox({ 'overlayShow': true, 'overlayOpacity': 0.7 });	
	$("a[rel=photography]").fancybox({ 'overlayShow': true, 'overlayOpacity': 0.7 });	
	$("a[rel=print]").fancybox({ 'overlayShow': true, 'overlayOpacity': 0.7 });	
	$('.imageContainer img').fadeTo("fast",0.70);
	$('.imageContainer img').mouseover(function() {
		$(this).fadeTo("fast",1);
		});
	$('.imageContainer img').mouseout(function() {
		$(this).fadeTo("slow",0.70);
		});


	});
