NOTES 13024 4 months ago
-
marciagandhi reblogged this from fucknormalitybtch
-
i-can-see-you-from-my-shadow reblogged this from vi-cky
-
Show more notesLoading...
$('div.box').live('mouseenter',function(){
$(this).find('.boxhover').fadeIn();
});
$('div.box').live('mouseleave',function(){
$(this).find('.boxhover').fadeOut();
});
$('.header .readmore').click(function(){
if($(this).hasClass("up")){
$(this).removeClass("up");
$('.header-more').slideUp();
}
else{
$(this).addClass("up");
$('.header-more').slideDown();
}
});
});