//Page fade in / out
$(document).ready(function() {
$(".productlist").css("display", "none");
$("#gallery").css("display", "none");
$("#promo_2").css("display", "none");
$("#ctl00_MainCentre_container_Content_98_pnlContentData").css("display", "none");
$(".StyleColourCont").css("display", "none");

$(".productlist").fadeIn(800);
$("#gallery").fadeIn(800);
$("#promo_2").fadeIn(800);
$("#ctl00_MainCentre_container_Content_98_pnlContentData").fadeIn(800);
$(".StyleColourCont").fadeIn(800);


});

  $(document).ready(function(){
    $("#pdf, #Twitter, #Facebook, .bar a img, #divContactFormSubmit input, .registerbutton input, .logincreatecell input, .loginbutton input, #hpSideImage img, #hpImage3 img, #hpImage2 img, .productdetailrow input, #slidingcart_container img, .line7_x img, .facebookMessage, #leftNavFaceBook a img, .stylesummarybox").hover(function() {
      $(this).stop().animate({opacity: "0.5"}, 'slow');
    },
    function() {
      $(this).stop().animate({opacity: "1"}, 'slow');
    });
  });
