$(document).ready(function() {
	$('#topLeftLogo a img').hover( 
		function () { $(this).stop().animate({ "opacity": 0.8 }); }, 
		function () { $(this).stop().animate({ "opacity": 1 }) }
	);
	
	$('#littleLuvviesLogo a img').hover( 
		function () { $(this).stop().animate({ "opacity": 0.8 }); }, 
		function () { $(this).stop().animate({ "opacity": 1 }); }
	);
	
	$('#contentTopRight').cycle({ fx: 'fade', random:  1 });
	
	$('#little-luvvies-gallery').cycle({ fx: 'fade', random:  1 });
	
	$('img#vid').hover( 
		function () { $(this).stop().animate({ "opacity": 0.7 }); }, 
		function () { $(this).stop().animate({ "opacity": 1 }); }
	);
	
	$('#special-events-gallery').cycle({ fx: 'fade', random:  1 });
	$('#stage-academy-gallery').cycle({ fx: 'fade', random:  1 });
	$('#pop-school-gallery').cycle({ fx: 'fade', random:  1 });
	$("a#youtube").fancybox({ 'hideOnContentClick': false,overlayOpacity: 0.85,overlayColor: '#000',frameHeight: 390, frameWidth: 440,  padding: 5 }); 
	$("a.newspaper").fancybox({ 'hideOnContentClick': false,overlayOpacity: 0.85,overlayColor: '#000' });
	$("a.gallery").fancybox({'hideOnContentClick': false });
	$("a.map").fancybox({ 'hideOnContentClick': false,overlayOpacity: 0.85,overlayColor: '#000',frameHeight: 390, frameWidth: 440,  padding: 5 }); 

	
});