$('document').ready(function(){

//hiding portfolio images when hovering
$('.project-excerpt').hover(hov1, hov2);

function hov1(){
	$(this).find('img').stop(true, true).fadeTo(400, 0);
 }


 function hov2() {
	$(this).find('img').stop(true, true).fadeTo(600, 1);	
 }

//shoving portfolio description when hovering
$('.project-excerpt').hover(hov3, hov4);

function hov3(){
	$('.portfolio-desc',this).stop(true, true).fadeIn();
 }


 function hov4() {
	$('.portfolio-desc',this).stop(true, true).fadeOut();	
 }

$('.blog-teaser:odd').addClass('blog-teaser-odd');

$('.ads-widgets .widget-container:odd').css("margin-right","0px");

});
