$(document).ready(function(){ 

        $('table#register_form input[type="text"]').addClass("idle");
       		$('table#register_form input[type="text"]').focus(function() {
       			$(this).removeClass("idle").addClass("focus");
    		    if (this.value == this.defaultValue){ 
    		    	this.value = '';
				}
				if(this.value != this.defaultValue){
	    			this.select();
	    		}
    		});
    		$('table#register_form input[type="text"]').blur(function() {
    			$(this).removeClass("focus").addClass("idle");
    		    if ($.trim(this.value) == ''){
			    	this.value = (this.defaultValue ? this.defaultValue : '');
				}
    		});
    		

		      $('.beaconscheme').toggle(
		      	function () {
   					 $('.whatisbeaconscheme').show();
 				 },
 				 function () {
  					  $('.whatisbeaconscheme').hide();
 				 }
		      );
		      	
			//$('.whatisbeaconscheme').ifixpng(); 
			
				//////////////////////////////////////////
	//          top menu function           //
	//////////////////////////////////////////

	$('#jsddm > li').bind('mouseover', jsddm_open)
    $('#jsddm > li').bind('mouseout',  jsddm_timer)
			
			
			    		
        }); 