/**
 * @author Hiss
 */

var CSS = {};

CSS.start = function(){
// ----------------------------------------------------->	START
	CSS.MENUELIST	= []; 			
	CSS.app 		= $("#outer");
	CSS.nav 		= $("#nav");
	CSS.navItems	= CSS.nav.find(".off")
	

	CSS.navItems.each(function(){
		$(this).removeClass("jhook")
		$(this).addClass('jhookcopy');
		
		var link = $(this).children(":first");

		$(this).hover(function() {  
          link.stop().animate({ backgroundColor: "#f49f2c"}, 300);  
         },function() {  
           link.stop().animate({ backgroundColor: "#ffffff"}, 400);  
        });  

	});	
		
}


// ----------------------------------------------------->	DOM Ready

$(document).ready(function () {	
	CSS.start();
});
