$(function(){
    
    $('.nav').bind(
    {
        mouseover : function()
        {
            $offset = $(this).offset();
            $('.slider').stop().animate(
            {
                'left' : $offset.left - ($(document).width() /2)+415,
                'width' : $(this).outerWidth(true) 
            },250);                         
        }    
    });
    
    
    
    $('.navigation').bind(
    {
        mouseleave : function()
        {
            if( $('.navAktive').text() != '' )
            {
                $offset = $('.navAktive').offset();
                $('.slider').stop().animate(
                {
                    'left' : $offset.left - ($(document).width() /2)+415,
                    'width' : $('.navAktive').outerWidth(true) 
                },250);                
            }
        }
    });
    
        
});


function jqNav(navAkt){    
    $('.nav[rel="'+ navAkt +'"]').addClass('navAktive');    
}
