		$(document).ready(function(){

			// initialise plugins
			jQuery(function(){ 
		        $('ul.sf-menu').superfish({ 
		            autoArrows:  false,                // disable generation of arrow mark-up
				    onInit:        function(){},       // callback function fires once Superfish is initialised – 'this' is the containing ul 
				    onBeforeShow:  function(){ },       // callback function fires just before reveal animation begins – 'this' is the ul about to open 
				    onShow:        function(){},       // callback function fires once reveal animation completed – 'this' is the opened ul 
				    onHide:        function(){}        // callback function fires after a sub-menu has closed – 'this' is the ul that just closed  
		        }); 
			});
			
			$('input').checkBox();
			
			if( ($.browser.browser() == 'Safari') ){
				$("#site_end").css('background', 'none');
				$("#site_end").css('background', 'url(include/images/bg_round_ie.jpg) no-repeat center 0px');
			}
				

			
		});
