jQuery(function(){
  $("a[rel='gal']").colorbox({
    transition:"none",
    width:"945px",
    height:"650px"
  });

  $('#my-dropdown').sSelect();

  $('li.gray a').click(function(){
    return false;
  });

  $("a.targetBlank").click(function(){
    window.open(this.href);
    return false;
  });

});


// opens all external links in new window
jQuery(function(){
$('a[href^="http://"]')
  .attr({
    target: "_blank", 
    title: "This link will open in a new window"
  });
});
