
//$('ul', this).css('display', 'block');

$(document).ready(function()
{
	// menu
	
	$("#menu img").hover(function(){
		this.src = this.src.replace("_off","_over");
	}, function(){
		this.src = this.src.replace("_over","_off");
	});
	
	// para la mierda del explorer de windows

	if (false)
	{
		$("#headerwrapper").css(		"position",			"relative");
		$("#content").css(				"padding-top",		"0px");
		$("#contentwrapper").css(		"padding-top",		"0px");
	}
	
});

	