jQuery(document).ready(function(){
	j(".post-thumbnail img").hover(function(){
		j(this).stop().animate({top:"-140px"}, 7000)
			}, function() {
		j(this).stop();
	});
	j("ul#nav li").hover(function(){
		j(this).stop().css({borderStyle:"dotted"});
			}, function() {
		j(this).stop().css({borderStyle:"solid"});
	});
	j(window).bind("scroll", function(){
	    j("div#trigger").toggle(j(this).scrollTop() > 200);
	});
	j("div#trigger").hide();
	j("#blog .post:nth-child(3)").css({clear:"both"});		
	j("#featured ul li:nth-child(3)").addClass("test").css({clear:"both"});		
	j("#blog .post:nth-child(even)").css({marginRight:"0px"})

	
	
 });


