function headerloginEnter(e)
{ 
var characterCode;
if(e && e.which)
{
characterCode = e.which; 
}
else
{
e = event;
characterCode = e.keyCode;
}
if(characterCode==13)
	{
	 document.headersignin.submit();
	}
}   



/** Jquery Slider **/
jQuery.noConflict();  
jQuery(document).ready(function() {
		jQuery(".topMenuAction").click( function() {
			if (jQuery("#openCloseIdentifier").is(":hidden")) {
				jQuery("#slider").animate({marginTop:"-240px"}, 500 );
				jQuery("#openCloseIdentifier").show();
			} else {
				jQuery("#slider").animate({ 
					marginTop: "-5px"
					}, 500 );
				jQuery("#openCloseIdentifier").hide();
			}
		});  
	});


/******************/