$(document).ready(function(){

	// external links hack
	$('a.lnkExternal').click( function(){	window.open(this.href,'_blank'); return false;});
	
	// links outline hack 
	$("a, label, input[type='submit'], input[type='checkbox'], input[type='radio']").bind('focus',function(){if(this.blur)this.blur();});
	// pointer on submit buttons
	$("input[type='submit']").css('cursor', 'pointer');
	
	$('#lstMenu li').hover(
		function() {
			$(this).find("span").animate( { width:"60px" }, { queue:false, duration:300 });
		},
		function() {
			$(this).find("span").animate( { width:"20px" }, { queue:false, duration:300 });
		}
	);
	
	
});

function sendForm(sFormID){
	$('#'+sFormID).submit();
}
