$(document).ready(function() {
	$('.cycle').cycle({	fx: 'fade', speed:  1000, timeout: 5000  });
	$("a[rel^='prettyPhoto']").prettyPhoto({
		autoplay_slideshow: false,
		theme: "facebook"
	});

	$("ul.thumb li").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-55px', 
			marginLeft: '-55px', 
			top: '50%', 
			left: '50%', 
			width: '100px', 
			height: '100px',
			padding: '5px' 
		}, 200);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '5px', 
			marginLeft: '5px',
			top: '0', 
			left: '0', 
			width: '80px', 
			height: '80px', 
			padding: '5px'
		}, 400);
});
});

