/*
	Copyright Code Computerlove Ltd 2007-2010
	Build: 6.1.4.98
	Date: 30/03/2010 14:14:44
*/

/* Initialise mouse over and mouse out states for toolbox */

/* init events on toolbox rollover */
jQuery(document).ready(function(){

	jQuery("#NavigationPrimary .navigation-07").hover(function(){
		
		jQuery("div.df .row").css("position", "static");
		
		if (navigator.appVersion.indexOf("MSIE 6") != -1)
			jQuery("select").css("visibility", "hidden");
		
		if (typeof(window['auid']) == 'undefined' || auid != 5)
			jQuery(".graph_holder").css("visibility", "hidden");
		
		jQuery("#NavigationPrimary .navigation-07 .tools_sub_navigation").show();
	
	
	},function(){
	
		jQuery("div.df .row").css("position", "relative");
		
		if (navigator.appVersion.indexOf("MSIE 6") != -1)
			jQuery("select").css("visibility", "visible");
		
		if (typeof(window['auid']) == 'undefined' || auid != 5)
			jQuery(".graph_holder").css("visibility", "visible");
		
		jQuery("#NavigationPrimary .navigation-07 .tools_sub_navigation").hide();
	
	});
	
	
});
