$(function() {
	$('#banners > ul > li > h2 > a').bind('focus mouseover', function() {
		$('#banners > ul > li > h2 > a.active').siblings('.arrow').hide().parent('h2').parent('li').children('.banner').hide();
		$('#banners > ul > li > h2 > a.active').removeClass('active');
		$(this).addClass('active').parent('h2').parent('li').children('.banner').show();
		$(this).siblings('.arrow').show();
	});
	
	$('#banners > ul > li > h2 > .arrow').each(function() {
		$(this).css('top', ($(this).parent('h2').parent('li').prevAll('li').length * 60)+'px');
	})
	
	$('input[id="course_keywords"]').focus(function() {
		if ($(this).val() == $(this).attr('title')) {
			$(this).val('');
		}
	});
});
