$(document).ready(function(){

  //Gallery
  $("a[rel^='photo']").prettyPhoto()
  
  $(".offer .box").click(function(){
      var link = $("a", this).attr("href");
      window.location.href = link; 
  });
  
  $(".gallery-box").click(function(){
      var link = $("h5 a", this).attr("href");
      window.location.href = link; 
  });
  
  $("img").rightClick( function(e) {
        var text = $("p#imgrules").text().replace("<br/>", /\n/g)+"\n\n"+$("p#iprules").text().replace("<br/>", /\n/g);
        alert(text);
      });
  
  
  
  
  $('.header ul').bxSlider({
      mode: 'fade',
      controls: false,
      randomStart: true,
      speed: 2000,
      pause: 5000,
      auto: true
  });
  
  $(".top .new_offer a strong").blink();
  $(".offer .promo h3 a").blink();
  
  
	
  //IE .png fixing - Must be at the end of JS resources
  $("").pngFix(); 

  
});

