/**
* Main Javascript for Ultimate Systems
* Contains often used functions and page dynamics. 
*
* Author: Dana Murad
* Date: 08-11-2010
* Copyright Ultimate Systems Inc 2010
*/

// When the document is ready...
$(document).ready(function(){
		
	// fix transparent images for IE
	$(document).pngFix(); 


	// format footer links
	$("#footer #links a:not(:nth-child(1))").prepend(".&nbsp;&nbsp;&nbsp;"); 

	// Animate the menu buttons:
	$(".menu").hover(function(){$(this).addClass("menu_hover","5000");},
						  function(){$(this).removeClass("menu_hover","5000");}
						  );


});

// When the page has started and document.ready scripts have finished: 

$(window).load(function(){
	// after all the images and content have been loaded, display the page:
  	$('#global_wrapper').css('visibility','visible');
});



