var exists = function( id ){ if( document.getElementById( id ) ){ return true ; }else{ return false ; } }

$.fn.setCursor = function( ){
  this.mouseover( function( ) {
    document.body.style.cursor = "pointer" ;
   } ).mouseout( function( ){ 
    document.body.style.cursor = "auto" ;
  } ) ;
  return this;
} ;

