jQuery(document).ready(function($) {
    
 	// Hoverbox! 
	jQuery('span.popinfo').hoverbox();
	
    //  FLASH
    jQuery("#flashMessage").show("normal",
        function()
        {
            jQuery("#flashMessage").fadeOut(10000);
        }
        );

	// Disable submit button after click
	jQuery(".lockme").click(function(){
		$(this).attr("disabled", "true");
	});
	
	// Clear text in input
	jQuery(".clearme").click(function(){
		$(this).removeClass("clearme");
		$(this).val("");
	});


}); 
