$(document).ready(function() {



$('#standard_gallery').cycle({ 
     fx:     'fade', 
    speed:  'fast', 
    timeout: 5000, 
    next:   '#next', 
    prev:   '#prev' 
});

$('#small_gallery').cycle({ 
     fx:     'fade', 
    speed:  'fast', 
    timeout: 5000, 
    next:   '#small_next', 
    prev:   '#small_prev' 
});



 $('#pause').click(function() { $('#standard_gallery').cycle('pause');  });
 $('#play').click(function() { $('#standard_gallery').cycle('resume');  });

$("a.group").click(function() { $('#standard_gallery').cycle('pause');  });

$("#standard_gallery_space").hover(
      function () {
        $("#enlarge").fadeIn('fast');
		 $("#next").fadeIn('fast');
		  $("#prev").fadeIn('fast');
		   $("#pause").fadeIn('fast');
		    $("#play").fadeIn('fast');
      }, 
      function () {
       $("#enlarge").fadeOut('slow');
	   		 $("#next").fadeOut('slow');
		  $("#prev").fadeOut('slow');
		   $("#pause").fadeOut('slow');
		    $("#play").fadeOut('slow');
      });

$("#small_gallery_space").hover(
      function () {
        $("#small_enlarge").fadeIn('fast');
		 $("#small_next").fadeIn('fast');$('#small_gallery').cycle('pause');
		  $("#small_prev").fadeIn('fast');
		  
      }, 
      function () {
       $("#small_enlarge").fadeOut('slow');
	   		 $("#small_next").fadeOut('slow');
		  $("#small_prev").fadeOut('slow');$('#small_gallery').cycle('resume');
		   
      });



$("a.group").fancybox({
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':	300, 
		'overlayShow':		true,
		'overlayOpacity': .9
	});


});
 $(window).load(function() {
$('#standard_gallery').cycle('pause');
});