

$(document).ready(function() {

    

	
	$("div.vendor img.hovered").hide();
	$("div.vendor").hover(function() {
		$(this).find('img').fadeIn(400);
	}, function() {
		$(this).find('img.hovered').fadeOut(400);
	});
	
	$("div.vendor").click(function(){
    	window.location=$(this).find("a").attr("href");
    	return false;
	});

}); 



$(document).ready(function() {

	
	$('.hover').hover(function() {
	  $(this).addClass('active');
	}, function() {
	  $(this).removeClass('active');
	});
	




});