jQuery(function(){
	jQuery('ul.sf-menu').superfish({
		speed: 400,
		animation:  {opacity:'show',height:'show'}
	});
});
		
$(document).ready(function() {
		
    // Anchors -----------------------------------------------------------------------------------
    function filterPath(string) {
  	return string
  	  .replace(/^\//,'')
  	  .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
  	  .replace(/\/$/,'');
    }

    // Open link in new windows -----------------------------------------------------------------------------------
    $("a.ext").click(function(){
      window.open(this.href); 
      return false;
    });
		
});
