$(function(){
	$('#f_2columns .f_column:last').css("float","right");

	$("#splash_img").innerfade({
		animationtype: 'fade',
		speed: 'slow',
		timeout: '5000'
	});
	
	$(".fullwidth").parent().css("width","980px");
	
	
	/*** hover for menu ***/
	
	$("#nav LI").hover(function(){
			$(this).children("UL").show();
		}, function(){
			$(this).children("UL").hide(); 
	});
	$("#nav_gwsol LI").hover(function(){
			$(this).children("UL").show();
		}, function(){
			$(this).children("UL").hide(); 
	});
	$("#subnav LI").hover(function(){
			$(this).children("UL").show();
		}, function(){
			$(this).children("UL").hide(); 
	});
	
	if ($.browser.safari) {
		$('BODY').addClass('safari');
	}



});