$(document).ready(function(){
 
//Larger thumbnail preview 
 
$(".div_elastico").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('a').addClass("hover").stop()
		.animate({
			width: '100%'

		}, 200);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('a').removeClass("hover").stop()
		.animate({
			width: '83%' 
		}, 400);
});

$(".div_elastico_y").hover(function() {
	$(this).css({'z-index' : '10'});
	$(this).find('a').addClass("hover").stop()
		.animate({
			height: '100%'

		}, 200);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('a').removeClass("hover").stop()
		.animate({
			height: '83%' 
		}, 400);
});
 
//Swap Image on Click
	$("ul.thumb li a").click(function() {
		
		var mainImage = $(this).attr("href"); //Find Image Name
		$("#main_view img").attr({ src: mainImage });
		return false;		
	});
 
});
