

$(document).ready(function() {

    
	$("div.ourwork div.investor:nth-child(1)").addClass("top");
	$("div.ourwork div.investor:nth-child(2)").addClass("top");
	$("div.ourwork div.investor:nth-child(3)").addClass("top");
	$("div.ourwork div.investor:nth-child(4)").addClass("top");
	
	$("div.investor img.hovered").hide();
	$("div.investor").hover(function() {
		$(this).find('img').fadeIn(400);
	}, function() {
		$(this).find('img.hovered').fadeOut(400);
	});
	
	$("div.investor").click(function(){
    	window.location=$(this).find("a").attr("href");
    	return false;
	});

}); 



$(document).ready(function() {

	
	$('.hover').hover(function() {
	  $(this).addClass('active');
	}, function() {
	  $(this).removeClass('active');
	});
	




});
