jQuery(document).ready(function(){ 
        jQuery(document).pngFix(); 
		// firelight subscribe
		jQuery("#firesignup").click(function(){
			jQuery("#firesignupform").slideDown("slow");
			jQuery("#firesignup").fadeOut("slow");
		});
		jQuery("#closeFire").click(function(){
			jQuery("#firesignupform").slideUp("slow");
			jQuery("#firesignup").fadeIn("slow");
		});
		
		//browser hacks
		var browseversion = parseInt(jQuery.browser.version);
		//alert(browseversion);
		if (jQuery.browser.msie && browseversion == 6) {
 		 //alert("ie 6");
		 jQuery("#navContainer p").css("width","700px");
		}
		if (jQuery.browser.msie && browseversion == 7) {
 		 //alert("ie 6");
		}
		
		
		// Dom Friendly For the homepage 4 boxes
		jQuery(".message").click(function(){
			window.location = "/speaking/";
		});
		jQuery(".mesenger").click(function(){
			window.location = "/about/";
		});
		jQuery(".products").click(function(){
			window.location = "/store/";
		});

		
}); 



