/**
 * Author => Company       : Prodo Ltd
 * Author => Email         : chris@prodo.com
 * Author => Name          : Christopher Robinson
 * Author => Website       : http://www.prodo.com
 * Code   => Last Modified : 09 July 2009
 */

$(document).ready(function() {
	
	$('a[rel=external]').click(function(e) {
		open(this.href);
		e.preventDefault();
	}).attr('title', 'Opens in a new window');
	
	$("#header ul li a").hover(function() {
		$(this).parent().find("ul.subnav").slideDown().show();
		
		$(this).parent().hover(function() {
		}, function() {
			$(this).parent().find("ul.subnav").slideUp('slow');
		});
	});
});