// JavaScript Document for Fade in Out effect

$(document).ready(function () {

if ($.browser.msie && $.browser.version < 7) return; // Don't execute code if it's IE6 or below cause it doesn't support it.

  $(".fade").fadeTo(1, 1);
  $(".fade").hover(
    function () {
      $(this).fadeTo("fase", 0.33);
    },
    function () {
      $(this).fadeTo("slow", 1);
    }
  );
  
  $(".photofade").fadeTo(1, 1);
  $(".photofade").hover(
    function () {
      $(this).fadeTo("fast", 0.88);
    },
    function () {
      $(this).fadeTo("fast", 1);
    }
  );

});


$(document).ready(function(){

	$('.sidebaropts ul li').hover(function() {
		$(this).stop().animate({paddingLeft:'10px'},200);
	},function(){
		$(this).stop().animate({paddingLeft:0},200);

	});

});

