$(document).ready(function(){
	$('.external').click(function(){
		window.open(this.href);
		return false;
	});

	hide_sub();
	$('#banner ul:first').show();
	$('#nav a').hover(function(){
		var el = '#sub_'+$(this).attr('id');
		
		if($(''+el+'').length && $(el).css( 'display' ) == 'none'){
			hide_sub();
			$(el).fadeIn('slow');
		}
	});
	$('#banner_images').cycle();
	
	$('.button_redirect').click(function(){
		window.location = $(this).attr('title');
		return false;
	});
	$('.gallery li a').lightBox();
	
});


function onAfter(){
	$("#banner ul li a.selected").removeClass("selected");
	var id = $(this).attr('id');
	id = id.replace('-recruitment','');
	$('#banner_nav ul li a.'+id).addClass('selected');
	
}


function hide_sub(){
	$('#banner ul').each(function(){
		$(this).hide();
	});
}
