$(document).ready(function(){
	$(".logoblock").hover(
		function(){
			$(this).children("a").css({"color": "#84a7cb"});
		},
		function(){
			$(this).children("a").css({"color": "#333"});
		}
		
	)
	
	
	
	/*$(".logoblock img").each(function(){
		
		var vUrl = $(this).siblings("a").attr("href");
		
		$(this).attr("onclick","window.location='"+vUrl+"'");
	
	});*/
	
	
});