
/* COLUMNS SCROLL
------------------------------------------------------------------ */
function scroll_init()
{
  $(".col").dragscroll();
}

/* EXT LINKS
------------------------------------------------------------------ */
function ext_links_init() {
  $('a[href^=http://]').not('[href*='+location.hostname+']').click(function(e) {
   		//e.preventDefault();
   		this.target = "_blank";
   	});
}

/* INIT
------------------------------------------------------------------ */
$(function() {

 scroll_init();
 ext_links_init();
 
});
