/* Using jQuery For The Animation */
$(function() {
	// set opacity to nill on page load
	$("#g_navi li").css("opacity","0");
	// on mouse over
	$("#g_navi li").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'fast');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
});

$(function() {
	// set opacity to nill on page load
	$("#g_navi li").css("opacity","0");
	// on mouse over
	$("#g_navi li").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1
		}, 'fast');
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0
		}, 'fast');
	});
});


$(function() {
  $('#pagetop a img').opOver(1.0,0.6,200,500);
});
