// Main Menu - IE6 rollover effect
jQuery(document).ready(function() {

	jQuery("#menu li").hover(
      function () {
        jQuery(this).addClass("sfhover");
      },
      function () {
       jQuery(this).removeClass("sfhover");
      }
    );
});

jQuery(document).ready(function(){
								
			jQuery('#submit').hover(
			function(){ // Preload Over
    		jQuery(this).attr({ src : 'http://www.mimram.com.au/wp-content/themes/milano/images/btn_over.png'});
            },
			function(){ // Change the input image's source when we "roll on"
    		jQuery(this).attr({ src : 'http://www.mimram.com.au/wp-content/themes/milano/images/btn_up.png'});
            },
            function(){ // Change the input image's source back to the default on "roll off"
       		jQuery(this).attr({ src : 'http://www.mimram.com.au/wp-content/themes/milano/images/btn_over.png'});            
			}
        );
    });