// JavaScript Document for Fade in Out effect

jQuery(document).ready(function () {

if (jQuery.browser.msie && jQuery.browser.version < 7) return; // Don't execute code if it's IE6 or below cause it doesn't support it.

  jQuery(".fade").fadeTo(1, 1);
  jQuery(".fade").hover(
    function () {
      jQuery(this).fadeTo("fase", 0.33);
    },
    function () {
      jQuery(this).fadeTo("slow", 1);
    }
  );
  
  jQuery(".photofade").fadeTo(1, 1);
  jQuery(".photofade").hover(
    function () {
      jQuery(this).fadeTo("fast", 0.88);
    },
    function () {
      jQuery(this).fadeTo("fast", 1);
    }
  );

});


jQuery(document).ready(function(){

	jQuery('.sidebaropts ul li').hover(function() {
		jQuery(this).stop().animate({paddingLeft:'10px'},200);
	},function(){
		jQuery(this).stop().animate({paddingLeft:0},200);

	});

});

