/**
 * Initializes all our Javascript
 */

/**
 * Starts the slideshow/binds the buttons
 */
jQuery.noConflict();
(function($) {            
  $(document).ready(function() {

    // Standards compliant links to open in new window
    $('a[rel="external"]').click(function() {
      window.open($(this).attr('href'));
      return false;
    });
    
    // Redirect to complete rooms
    if($('body.category-complete-kamertjes').length > 0) {
      window.location = "http://www.dekleinegeneratie.nl/complete-kamertjes/kamer-parijs.html";
    }
    
    $.prepareSlideshows();
  });
})(jQuery);
