function changeImgs(imgssrc) {
	var vario = "";
	document.getElementById('big_imgs').src = imgssrc;
}

$(document).ready(function(){ 

	$('.boxgrid.slidedown').hover(function(){
		$(".cover", this).stop().animate({top:'6px'},{queue:false,duration:300});
	}, function() {
		$(".cover", this).stop().animate({top:'-60px'},{queue:false,duration:300});
	});

	$('#info_text').hide();
    
	$('#info_button').mouseover(function(){
    	$('#info_text').fadeIn('slow');
	});

	$('#info_button').mouseout(function(){
    	$('#info_text').fadeOut('slow');
    });
	
});			


