$(document).ready(function() {
	$('#gallery').cycle({ 
    	fx:     'fade', 
    	timeout: 2000, 
		next:   '#gallery', 
    	pause:	1     
	});
	
	$('.projects li div').hover(
  function () {
    $(this).addClass("hover");
  });
});