// JavaScript Document

$(document).ready(function($) {
		//Menu animation						
		$('#navList ul').css({display: "none"}); //Fix Opera

		$('#navList li, #navListproducts li').hover(function() {  
		$(this).addClass('addPosition');
		$(this).find('a').stop().animate({'width' : "148"});
   		$(this).find('ul:first').css({visibility : "visible", display : "none"}).show(200);
		
		}, function() {
    		$(this).find('ul:first').css({visibility : "hidden"}).hide(200);
   			$(this).find('a').stop().animate({'width' : "148"});
			$(this).removeClass('addPosition');
			});
			
		$('#navListproducts li ul li').hover(function() {  
		$(this).addClass('addPosition');
		$(this).find('a').stop().animate({'width' : "325"});
   		$(this).find('ul:first').css({visibility : "visible", display : "none"}).show(200);
		
		}, function() {
    		$(this).find('ul:first').css({visibility : "hidden"}).hide(200);
   			$(this).find('a').stop().animate({'width' : "325"});
			$(this).removeClass('addPosition');
			});
		});
