// JavaScript Document

/**
* runs once the page is loaded
*/
jQuery(document).ready(
     function(){

          //alert( 'here' );

          jQuery(".leftnav img").hover(
           function()
           {
            this.src = this.src.replace(".jpg","_over.jpg");
           },
           function()
           {
            this.src = this.src.replace("_over.jpg",".jpg");
           }
          );

     }
	 
 );


