
jQuery.init_thumb_laseres = 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: '-57px', 
				marginLeft: '-57px', 
				top: '50%', 
				left: '50%', 
				width: '120px', 
				height: '120px',
				padding: '5px' 
			}, 200);
		
		} , function() {
		jQuery(this).css({'z-index' : '0'});
		jQuery(this).find('img').removeClass("hover").stop()
			.animate({
				marginTop: '0', 
				marginLeft: '0',
				top: '0', 
				left: '0', 
				width: '67px', 
				height: '67px', 
				padding: '5px'
			}, 400);
	});
	
	/*
	//Swap Image on Click
		jQuery("table.thumb td a").click(function() {
			
			var mainImage = jQuery(this).attr("href"); //Find Image Name
			jQuery("#imagen_grande img").attr({ src: mainImage });
			return false;		
		});
	*/
	 
}

jQuery.init_thumb_laseres2 = function() {
	//Larger thumbnail preview 
	
	jQuery("table.thumb td").hover(function() {
		jQuery(this).css({'z-index' : '0'});
		jQuery(this).find('img').addClass("hover").stop()
			.animate({
				marginTop: '-57px', 
				marginLeft: '-57px', 
				top: '50%', 
				left: '50%', 
				width: '120px', 
				height: '120px',
				padding: '5px' 
			}, 200);
		
		} , function() {
		jQuery(this).css({'z-index' : '10'});
		jQuery(this).find('img').removeClass("hover").stop()
			.animate({
				marginTop: '0', 
				marginLeft: '0',
				top: '0', 
				left: '0', 
				width: '67px', 
				height: '67px', 
				padding: '5px'
			}, 400);
	});
	
	/*
	//Swap Image on Click
		jQuery("table.thumb td a").click(function() {
			
			var mainImage = jQuery(this).attr("href"); //Find Image Name
			jQuery("#imagen_grande img").attr({ src: mainImage });
			return false;		
		});
	*/
	 
}


