// tendina

// initialize the jquery code
 $(document).ready(function(){
//close all the content divs on page load
$('.mover').hide();
// toggle slide
$('#slideToggle').click(function(){
// by calling sibling, we can use same div for all demos
$(this).siblings('.mover').slideToggle('.mover');
});
// toggle slide
$('#slideToggle_2').click(function(){
// by calling sibling, we can use same div for all demos
$(this).siblings('.mover_2').slideToggle('.mover_2');
});
});

// boxes

$(document).ready(function(){
//To switch directions up/down and left/right just place a "-" in front of the top/left attribute
//Vertical Sliding
$('.boxgrid.slidedown').hover(function(){
$(".cover", this).stop().animate({top:'-260px'},{queue:false,duration:300});
}, function() {
$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:300});
});	
});

