jQuery(document).ready(function(){//Larger thumbnail preview 
jQuery("ul.thumb li").hover(function() {
	jQuery(this).css({'z-index' : '10'});
	jQuery(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '303', 
			height: '80px',
			padding: '20px' 
		}, 0);
	jQuery(this).find('.project-title').addClass("hover").stop()		
	} , function() {
	jQuery(this).css({'z-index' : '0'});
	jQuery(this).find('img').removeClass("hover").stop()
		.animate({
			marginTop: '0', 
			marginLeft: '0',
			top: '0', 
			left: '0', 
			width: '303px', 
			height: '80px', 
			padding: '20px'
		}, 400);
	jQuery(this).find('.project-title').removeClass("hover").stop()			
});
//Swap Image on Click
	jQuery("ul.thumb li a").click(function() {
		var mainImage = jQuery(this).attr("href"); //Find Image Name
		jQuery("#main_view img").attr({ src: mainImage });
		return true;	
	});
});
