$(document).ready(function(){
	// When Document is Ready
});

$(function(){
	
	// Adding Hover Element
	$('div#navmenu li a').append('<span class="hover"></span>');
	
	// Doing the Hover Function
	$('div#navmenu li a').hover(function(){
		$('.hover', this).stop().animate({'opacity': 1}, 700,'easeOutSine');
	},
	function(){
		$('.hover', this).stop().animate({'opacity': 0}, 700, 'easeOutQuad');
	});
	
});

function ipage(file){
	document.getElementById('ipage').src = file;
}
