$(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:'-150px'},{queue:false,duration:600});
				}, function() {
					$(".cover", this).stop().animate({top:'0px'},{queue:false,duration:600});
				});
				
				$(".aktt_tweets").easySlider({
				auto: true,
				continuous: true
				});

				$(".btn-slide").click(function(){		
				$("#panel").slideToggle("slow");		
				$(this).toggleClass("active");		
				});	
				
			});
