$ = jQuery;

(function($) {

	$(window).load(function(){
	
		// The magic sliding panels
		$('.title a span.slide-title').css({
			opacity : '0.9'
		}).parent('a').append('<span class="cover-up"></span>');
		$('.post').mouseover(function(e){
				$(this).find('img.wp-post-image').stop().animate({
				marginTop : '-10px'
			}, 100).stop().fadeTo("slow",0.7);
		});
		$('.post').mouseout(function(e){
				$(this).find('img.wp-post-image').stop().animate({
				marginTop : '0px'
			}, 100).stop().fadeTo("slow",1.0);
		});
/*
		$('.post').mouseover(function(e){
				$(this).find('div.bottom-slide').stop().animate({
                                marginTop : '0px'
                        }, 100).fadeIn('slow')
                });
                $('.post').mouseout(function(e){
                                $(this).find('div.bottom-slide').stop().animate({
                                marginTop : '0px'
                        }, 100).hide()
                });

*/
					
	});

})(jQuery);

