NOTES 200068 4 months ago
-
blackandwhiteincolor liked this
-
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();
}
});
});