$(document).ready(function() {

// Open links in new window
$("a[rel='external']").click(function(){window.open(this.href); return false;});

// Activate Selectbox
$(function() {
	$('select').selectbox();
});

$(function(){

$("ul.mainnav li a").hover(function() { 

	$(this).parent().find("ul.subnav").slideDown('fast').show(); 

	$(this).parent().hover(function() {
	}, function(){	
		$(this).parent().find("ul.subnav").hide('fast');
	});

	});

});
  
});//End document ready
