function HPW_OnMouseOver (elem)
{
	document.getElementById(elem).src = "/img/"+elem+"-d.gif";
}

function HPW_OnMouseRelease (elem)
{
	document.getElementById(elem).src = "/img/"+elem+"-n.gif";
}


$(document).ready(function() {
	$('.menu').hover(
		function() {
			$(this).attr("src", "/img/"+$(this).attr("id")+"-d.gif").addClass("cursor_hand");
		},
		function() {
			$(this).attr("src", "/img/"+$(this).attr("id")+"-n.gif").removeClass("cursor_hand");			
		}
	);

	$('.menu').click(
		function() {
			$('#bodyContainer').html('<iframe src="'+$(this).attr('title')+'" id="contentIframe" ></iframe>').css("overflow","hidden");
		}
	);
	
	$('#picslide').cycle('fade');
});
