// when the DOM is ready...
jQuery(document).ready(function($) {
  	jQuery('ul#menu-main-menu').superfish();
  
  	jQuery("#facebox a.close").addClass("jqmClose");

	var myOpen=function(hash){ hash.w.fadeIn('2000'); };
	var myClose=function(hash) { hash.w.fadeOut('2000',function(){ hash.o.remove(); }); };
	
	jQuery("#facebox").jqm({onShow:myOpen,onHide:myClose});
	
	jQuery("textarea").parent().addClass("textarea");
	
	
	if (jQuery.browser.msie){
		jQuery(".contact-us").textShadow({
			x: "1",
			y: "1",
			color:"#000000"
		});

		jQuery("#nav .menu a, .gaq, a.readmore").textShadow({
			x: "-1",
			y: "-1",
			color:"#451717"
		});
		
		jQuery(".entry-title a, .entry h2 a").textShadow({
			x: "1",
			y: "1",
			color:"#FFFFFF"
		});
	}
}); 
