/* 
 * Main javasciprt file for webworksconsultant.com
 *
 * @copyright   Copyright (c) 2009 Praym Prakash
 * @author      Praym Prakash [.p.] praym@webworsconsultant.com
 * @licence     http://webworksconsultant.com/licence
 *
 * @version     1.0
 * @changes     1.0 First implementation
 * 
 */


$(document).ready(function(){

      /*
      //shows the about textbox when mouse hover over it
         $('#about-button').mouseenter(function(){
            $('#about-text').show();
         });

         //hides the textbox when the mouse goes out of the textbox
         $('#about-text').mouseleave(function(){
            $(this).hide();
         });
      */

 });


