/**
 * Basic JS file
 **/

 jQuery(document).ready(function()
 {
    jQuery('.signPostL').mouseenter(function(){ jQuery(this).find('img').animate({ opacity:1.0 }, 200, function(){  }); });    
    jQuery('.signPostL').mouseleave(function(){ jQuery(this).find('img').animate({ opacity:0.85 }, 100, function(){  }); });
    
    jQuery('.signPostR').mouseenter(function(){ jQuery(this).find('img').animate({ opacity:1.0 }, 200, function(){  }); });    
    jQuery('.signPostR').mouseleave(function(){ jQuery(this).find('img').animate({ opacity:0.85 }, 100, function(){  }); });
 });

