// JavaScript Document

function goToPage(url){
	window.location = url;
}

// Jquery Animate - Jquery UI
$(".menu_item")
	.click(function(){
		if(this.className == "menu_item"){
			$(this).clearQueue();
			$(this).animate(
				{
					opacity:"0.5"
				}, 
				{duration:50}
			);
		};
	}).mouseover(function(){
		if(this.className == "menu_item"){
			$(this).clearQueue();
			$(this).animate(
				{
					marginTop:"5px",
					height:"65px"
				}, 
				{duration:500}
			);
		};
	}).mouseleave(function(){
		if(this.className == "menu_item"){
			$(this).clearQueue();
			$(this).animate(
				{
					marginTop:"35px",
					height:"35px"
				}, 
				{duration:500}
			);
		};
	});


