	

$(document).ready(function(){

/************************************************/
/*	Description page Hoverovers					*/
/************************************************/	

$(".inner-box a").addClass("more-info");

$(".left-content a").addClass("thickbox");

$(".inner-box span.request a").removeClass("thickbox").removeClass("more-info");


$(".description").hover(function() {
		$(this).addClass('zindex'),
		$(this).find('.hidden').addClass('show'),  
		$(this).find('img').addClass('hover');
			}, function() {
		$(this).removeClass('zindex'),
		$(this).find('.hidden').removeClass('show'), 
		$(this).find('img').removeClass('hover');
	});

	
});









/*WORKING*/

/*
	$(".thickbox").hover(function() {
		$(this).parent().next().addClass('show'),
		$(this).children().addClass('hover')
			}, function() {
		$(this).parent().next().removeClass('show'),
		$(this).children().removeClass('hover')
	});
});
*/




/*
	$(".thickbox img").hover(function() {
		$(this).addClass('hover'),
		$(this).parent('a').parent('div').next().addClass('show')
			}, function() {
		$(this).parent('a').parent('div').next().removeClass('show'),
		$(this).removeClass('hover')
	});
});

*/