$(document).ready(function(){
	//alert('asdf');
	
	
	$('.imgbox').hover(function(){
		$(this).find('img').stop().animate({
			opacity:0.4
		}, 250);
	}, function(){
		$(this).find('img').stop().animate({
			opacity:1
		}, 150);
	});
	$()
	
	$('.blogimg').hover(function(){
		$(this).find('img').stop().animate({
			opacity:0.4
		}, 250);
	}, function(){
		$(this).find('img').stop().animate({
			opacity:1
		}, 250);
	});

	$('#logo').hover(function(){
		$(this).css({
			height: 200
		});
	}, function(){
		$(this).css({
			height: 62
		});
	});

	
	
});

