$(document).ready(function() { 
	if ($.browser.mozilla && parseFloat($.browser.version) < 1.9 && navigator.appVersion.indexOf('Mac') !== -1) $('body').css('-moz-opacity',.999);
    $('ul.sf-menu').superfish({ 
		hoverClass:    'sfHover',          // the class applied to hovered list items 
	    pathClass:     'current', // the class you have applied to list items that lead to the current page 
        animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation 
        delay:       1000,                            // one second delay on mouseout 
        speed:       'slow',                          // faster animation speed 
	    autoArrows:    false,               // if true, arrow mark-up generated automatically = cleaner source code at expense of initialisation performance 
	    dropShadows:   false,               // completely disable drop shadows by setting this to false 
	    disableHI:     true,              // set to true to disable hoverIntent detection 
    }); 
	$('#jobListingsList').columnize({ columns: 2 });  
});
