$mundi(function() {

	$mundi('.draggable').draggable();
	
$mundi('#gallery-grid').not('#gallery-grid.video').find('>*').click(function()
		{
			var u = $mundi(this).find('a').attr('href');
			window.location=u;
		});
	
	function resetHover()
		{
			$mundi('.description').stop().removeAttr('style');
		}
	
h = $mundi(this).find('.description').height();

$mundi('#gallery-grid .standard .description').css({top: "" + 335-h+ "px"});
$mundi('#gallery-grid .alt .description').css({bottom: "" + 335-h+ "px"})
	
	$mundi('#gallery-grid .standard').hover(function()
		{
			var h = $mundi(this).find('.description').height();
			$mundi(this).find('.description').stop().show(0).animate({top: "20px"}, 600);
			
		},function()
		{
			$mundi(this).find('.description').stop().animate({top: "" + 335-h+ "px"}, 400);
		});

	$mundi('#gallery-grid .alt').hover(function()
		{
			$mundi(this).find('.description').stop().show(0).animate(
			{bottom: "20px"}, 600);
		
		},function()
		{
			$mundi(this).find('.description').stop().animate({bottom: "" + 335-h+ "px"}, 400);
		});
});
