$(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();
		});
	});
	
	/*
	 *
	 */
	$('#job_search .quicklinks ul').hide();
	
	$('#job_search .quicklinks p').click(function(e) {
		$('#job_search .quicklinks ul').slideToggle(600);
		e.preventDefault();
	});
	
	/*
	 *
	 */
	$('#header .image .images').append('<img alt=" " height="398" src="/img/rotate/1.jpg" width="890" />');
	$('#header .image .images').append('<img alt=" " height="398" src="/img/rotate/2.jpg" width="890" />');
	$('#header .image .images').append('<img alt=" " height="398" src="/img/rotate/3.jpg" width="890" />');
	$('#header .image .images').append('<img alt=" " height="398" src="/img/rotate/4.jpg" width="890" />');
	$('#header .image .images').append('<img alt=" " height="398" src="/img/rotate/5.jpg" width="890" />');
	$('#header .image .images').append('<img alt=" " height="398" src="/img/rotate/6.jpg" width="890" />');
	$('#header .image .images').append('<img alt=" " height="398" src="/img/rotate/7.jpg" width="890" />');
	$('#header .image .images').cycle({
		delay : -2000
	});
	
});