﻿$jQuery(document).ready(function() {
	$jQuery("ul.dropdown").css({ 'display': 'none' });
	
	$jQuery("#mainNavigation").children('li').bind("mouseenter", function() {
    
    	$jQuery(this).find('.mainLink').css({ 'background-image': 'url(/Components/Design/Skins/BernafonWebsite/Images/layout/navi_back.png)','color':'#ffffff' });

    	var position = $jQuery(this).position();
    	var wid = ($jQuery(this).width() / 2) - 25;
    	$jQuery(this).find('.header').css({ 'left': position.left + wid });

    	if ($jQuery(this).children('ul').is(":hidden")) {
      		$jQuery(this).children('ul').slideDown("fast");
    	}
	}).bind("mouseleave", function() {
	$jQuery(this).children('ul').slideUp("fast");

	$jQuery(this).find('.mainLink').css({ 'background-image': 'url(/Components/Design/Skins/BernafonWebsite/Images/layout/navi_back_active.gif)', 'color': '#ffffff' });
    	
    	//check if this is the currently active page
    	if($jQuery(this).find('.mainLink').hasClass('active') == false) {
	    	$jQuery(this).find('.mainLink').css({ 'background-image': 'none', 'color':'#666666' });
	    }
	});
});
