$(function() {

	// Controls active textfields and textareas
	$(".textField, .textArea, .textFieldNoSize, .textAreaNoSize, .searchField").focus(function() {
		$(this).addClass("formFocus");
	});
	
	$(".textField, .textArea, .textFieldNoSize, .textAreaNoSize, .searchField").blur(function() {
		$(this).removeClass("formFocus");
	});
	
	// Handle the menu
	$("#menu_id li:has(ul)").click(function() {
		$(this).find("ul").toggle();
		$(this).toggleClass('activeLi');
	});

});	
	

function trackUser()
{
	pag = encodeURIComponent(location.href.substring(7)); scw = parseInt(screen.width); sch = parseInt(screen.height);
	ref = document.referrer; ref = ( ref == "" || ref == 'undefined' || ref.substring(0,7) != 'http://' ) ? '' : encodeURIComponent(ref.substring(7));
	src = '<img src="includes/track_user.php?pag='+pag+'&amp;ref='+ref+'&amp;scw='+scw+'&amp;sch='+sch+'" width="0" height="0" border="0" align="left" alt="" />';
	document.write(src);
}
