// JavaScript Document
$(function(){
	$("ul#eyefish li  img").hover(function(){ 
		$(this).animate({
			width:120,
			height:100
		},300);
	},function(){ 
		$(this).animate({ 
			width:85,
			height:71
		},300);	
	});
	
	$("div#apLanguage img").hover(function(){ 
		$(this).animate({
			width:48,
			height:48
		},300);
	},function(){ 
		$(this).animate({ 
			width:32,
			height:32
		},300);	
	});
	$('#apDivMenuMain div').mouseover(function(){
		$(this).addClass("ui-state-active"); 
	}).mouseout(function(){
		$(this).removeClass("ui-state-active");
	})	
	
	$('#HOME_link').click(function(){
		window.location = "index.php";								  
	});
	$('#Product_link').click(function(){
		window.location = "Products.php";								  
	});
	$('#Contact_link').click(function(){
		window.location = "Contact.php";								  
	});
	$('#Aboutus_link').click(function(){
		window.location = "Aboutus.php";								  
	});
	
})