function selectedPage(page)
{
	$("#nav ul").addClass("current-" + page);
}

$(document).ready(function(){
	img = $("#womo img");
	
	if (jQuery.support.opacity) 
	{
		img.fadeTo("slow", .50);
		img.mouseover(function(){
			img.fadeTo("slow", .99);
		})
		
		img.mouseout(function(){
			img.fadeTo("slow", .50);
		})
	}
	
	var temp = "";
	img.mouseover(function(){
		temp = document.title;
		document.title = "powered by TheWomo.com";
	})
	
	img.mouseout(function(){
		document.title = temp;
	})
	
	
	
})
