$(document).ready(function(){

//Fix Errors – http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/

//Remove outline from links
$("a").click(function(){
$(this).blur();
});

//When mouse rolls over
$(".dropper").mouseover(function(){
$(this).stop().animate({height:'136px'},{queue:false, duration:800 })
});

//When mouse is removed
$(".dropper").mouseout(function(){
$(this).stop().animate({height:'27px'},{queue:false, duration:1000})
});

$(".dropper2").mouseover(function(){
$(this).stop().animate({height:'82px'},{queue:false, duration:600})
});

//When mouse is removed
$(".dropper2").mouseout(function(){
$(this).stop().animate({height:'27px'},{queue:false, duration:800})
});

$(".dropper3").mouseover(function(){
$(this).stop().animate({height:'55px'},{queue:false, duration:400})
});

//When mouse is removed
$(".dropper3").mouseout(function(){
$(this).stop().animate({height:'27px'},{queue:false, duration:400})
});

$(".dropper4").mouseover(function(){
$(this).stop().animate({height:'190px'},{queue:false, duration:800})
});

//When mouse is removed
$(".dropper4").mouseout(function(){
$(this).stop().animate({height:'27px'},{queue:false, duration:800})
});

});



//				EHEMALIGE VERSION!!!!!!!!!!!!
//$(".dropper").mouseover(function(){
//$(this).stop().animate({height:'136px'},{queue:false, duration:1000, })
//});
