/**
 * Author => Company       : Prodo Ltd
 * Author => Email         : chris@prodo.com
 * Author => Name          : Christopher Robinson
 * Author => Website       : http://www.prodo.com
 * Code   => Last Modified : 10 September 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").show();
		
		$(this).parent().hover(function() {
		}, function() {
			$(this).parent().find("ul").hide();
		});
	});
	
	// 
	$('input#search').defaultValue('Search...');
	
});