$(document).ready(function(){

$('.imgcontainer').hover(

	function(){
		var toDo = $(this).next('.txtcontainer').css('height');
		if (toDo == 'auto') {toDo = 24;}
		$(this).animate({top:toDo},100);
		},
	function(){
		$(this).animate({top:'0px'},100);
		}
);

if (navigator.appName.search(/Microsoft/) != -1){
		$('.imgcontainer').click(function(){
		window.location.href = $(this).parent('a').attr('href');
	});
	}

});
