// JavaScript Document

jQuery(document).ready(function() {
	
	
	/* Primary Nav */
	var navitem = "#header > ul > li";	
	
	jQuery(navitem).hover(
	function() {		
		jQuery("ul",$(this)).slideDown("fast");		
		jQuery("a:first",$(this)).css({"color" : "#f09f1e" });				
	},
	function() {
		jQuery("ul",$(this)).slideUp("fast");	
		jQuery("a:first:not(.current)",$(this)).css({"color" : "#FFF" });	
	});
	
	
	/* Icon hover - moved from CSS to JS because IE */
	jQuery("a.section-image","#primary-content").hover(
		function(){
			jQuery("img.section-img",this).css({'top' : '-189px'});
		},
		function(){
			jQuery("img.section-img",this).css({'top' : '0px'});
		}
	);	
});