
// PanoTN FX
$(document).ready(function(){
		//Caption Sliding (Partially Hidden to Visible)
	$('.panotn').hover(function(){
		$(".panocaption", this).stop().animate({top:'0px'},{queue:false,duration:250});
		$(".panocover", this).stop().animate({opacity:0.7},{queue:false,duration:250});
	}, function() {
		$(".panocaption", this).stop().animate({top:'90px'},{queue:false,duration:750});
		$(".panocover", this).stop().animate({opacity:0},{queue:false,duration:500});
	});
});

function submitform()
{
  document.myform.submit();
}