/**
 * Javascript main file
 * ecoles-mezieres.ch
 *
 */
jQuery(function($){
   
   if(jQuery.fn.scrollable) {
      // Home & Normal colleges slider
      $(".block_slider .slider").scrollable({ circular: true, speed: 800 });
   }
   
   
   /** 
    * Open external link in a new page
    */
   $('a').filter(function(){
      return window.location.hostname !== this.hostname;
   }).each(function(){
      $(this).attr('target', '_blank');
   });
   
   $("a[href$='.pdf']").addClass('download');
   
});
