/***********************************
* Estev�o Mascarenhas
* http://www.estevaomascarenhas.com
************************************/
/*
$(document).ready(function(){
	
	jQuery.fn.overEffect = function(attr,over_val)
		{
                    alert(attr);
                    alert(over_val)
			var normal_val = $(this).css(attr);
			$(this).hover(function(){
					$(this).css(attr,over_val);
				},function(){
					$(this).css(attr,normal_val);
            });
		}
	
});*/

  $(document).ready(function(){

    $("#link_overeffect").hover(function () {
      $(this).css({'background-color' : '#ffffff'});
    }, function () {
      var cssObj = {
        'background-color' : '#F1F1F3',
        'font-weight' : ''
      }
      $(this).css(cssObj);
    });
       $("#link_overeffect2").hover(function () {
      $(this).css({'background-color' : '#ffffff'});
    }, function () {
      var cssObj = {
        'background-color' : '#F1F1F3',
        'font-weight' : ''
      }
      $(this).css(cssObj);
    });
       $("#link_overeffect3").hover(function () {
      $(this).css({'background-color' : '#ffffff'});
    }, function () {
      var cssObj = {
        'background-color' : '#F1F1F3',
        'font-weight' : ''
      }
      $(this).css(cssObj);
    });

  });
