// JavaScript Document for Fade in Out effect

$j=jQuery.noConflict();

jQuery(document).ready(function () {

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

  $j(".fade").fadeTo(1, 0.85);
  $j(".fade").hover(
    function () {
      $j(this).fadeTo("fast", 1);
    },
    function () {
      $j(this).fadeTo("fast", 0.85);
    }
  );
  
  $j(".fade-thumb").fadeTo(1, 1);
  $j(".fade-thumb").hover(
    function () {
      $j(this).fadeTo("slow", 0.83);
    },
    function () {
      $j(this).fadeTo("slow", 1);
    }
  );

});

