//----------------------------------------------------------------------------------------------------------------------------------------------
// urlms.com
// Copyright (c) by Goncalo "gesf" Fontoura
// Custom javascript functions.
//----------------------------------------------------------------------------------------------------------------------------------------------
// Things to do as soon as the document is ready...
//----------------------------------------------------------------------------------------------------------------------------------------------

$(document).ready(function(){

	$("#close").mouseover(function(){ $(this).css("background-image","url(http://i.urlms.com/bar_close_hover.jpg)");
		}).mouseout(function(){ $(this).css("background-image","url(http://i.urlms.com/bar_close.jpg)");
		}).click(function(){ window.location($(this).attr("href")); 
	});
	
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");  
	jQuery.getScript(gaJsHost + "google-analytics.com/ga.js", function(){  
	  try {
	    var pageTracker = _gat._getTracker("UA-244286-11");
	    pageTracker._trackPageview();
	  } catch(err) {}
	});
	
});
