$(document).ready(function() {
 
 	$('#slider').nivoSlider({
		controlNav:false,
		effect:'fold',
		pauseTime: 6000
	});
	
	$(document).ready(function(){
		$("a[rel^='prettyPhoto']").prettyPhoto({
			theme:'facebook',
			overlay_gallery:false
		});
	});

	$('#navigation h3').hover(
		function () {
			$(this).animate({opacity: 1},  { queue:false, duration:200 } );
		},
		function () {
		 $(this).animate({opacity: 0.5},  { queue:false, duration:200 } );
		}
	);
 
}); 
