$(document).ready(function() {
	$('#effect').cycle({
	fx:    'scrollLeft',
	timeout: 5000,
	speed:  500,
	delay: -2000
	});
    $("ul.thumb li").hover(function() {
	   $(this).css({'z-index' : '10'});
	   $(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-42px', 
			marginLeft: '-42px', 
			top: '0%', 
			left: '0%', 
			width: '284px', 
			height: '284px',
			padding: '0px'
		}, 400);
	
	} , function() {
	$(this).css({'z-index' : '7'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '-42px', 
			marginLeft: '-42px', 
			top: '0', 
			left: '0', 
			width: '189px', 
			height: '189px', 
    		padding: '5px'
        }, 900);
    });
});
