NOTES 100394 4 months ago
-
noiseandkisses reblogged this from c-oconutkiss
-
kiss-and-ditch reblogged this from connor-is-burning
-
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();
}
});
});