
jQuery(document).ready(function(){

//Larger thumbnail preview

jQuery(".menu ul.thumb li").hover(function() {
	jQuery(this).css({'z-index' : '11'});
	jQuery(this).find('img').addClass("hover").stop()
		.animate({
			marginTop: '-110px',
			marginLeft: '-110px',
			top: '50%',
			left: '50%',
			width: '174px',
			height: '174px',
			padding: '20px'
		}, 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: '100px',
			height: '100px',
			padding: '5px'
		}, 400);
});
/*
//Swap Image on Click
	jQuery(".menu ul.thumb li a").click(function() {
		var bl=false;
		var mainImage = $(this).attr("href"); //Find Image Name
		jQuery("#main_view img").attr({ src: mainImage });
		bl=true;
		return bl;
	});

        jQuery(".mioMenu ul.popMenu li").hover(function(){
           jQuery(this).css({'BACKGROUND-COLOR': '#fff'} );
	
		this.animate({
			marginTop: '-110px',
			marginLeft: '-110px',
			top: '50%',
			left: '50%',
			width: '174px',
			height: '174px',
			padding: '20px'
		}, 200);

	} , function() {
	jQuery(this).css({'z-index' : '16'});
	
		this.animate({
			marginTop: '0',
			marginLeft: '0',
			top: '0',
			left: '0',
			width: '100px',
			height: '100px',
			padding: '5px'
		}, 400);
});
*/
});
