$(document).ready(function(){

//Larger thumblistnail preview 

$("div.thumb div.thumb-inner").hover(function() {
	$(this).css({'z-index' : '1000'});
	$(this).find('div.imgholder img').addClass("hover").stop()
		.animate({
			opacity: '.2'
		}, 400);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('div.imgholder img').removeClass("hover").stop()
		.animate({
			opacity: '1'
		}, 600);
});

$("div.imageHolder").hover(function() {
	$(this).css({'z-index' : '1000'});
	$(this).find('img.image').addClass("hover").stop()
		.animate({
			opacity: '.2'
		}, 400);
	
	} , function() {
	$(this).css({'z-index' : '0'});
	$(this).find('img.image').removeClass("hover").stop()
		.animate({
			opacity: '1'
		}, 600);
});


});
