/**
 *
 */


var kic = {
	
	start: function() {
		
		kic.init_navigation();
		kic.init_searchbox();
		
	}
	
	/**
	 * Initialise the navigation menu and dropdowns
	 */
	,init_navigation: function() {
		$('.navigation-areas a.toplevel').parent().hover(function() {
			$(this).find('a.toplevel').addClass('active');
			$(this).find('ul').fadeIn('fast');
		}, function() {
			$(this).find('a.toplevel').removeClass('active');
			$(this).find('ul').fadeOut('fast');
		});
	}
	
	/**
	 * Initialise the search input area 
	 */
	,init_searchbox: function() {
		
		$('#q').focus(function() {
			if( $(this).val() == 'search' ) {
				$(this).val('');
			}
		}).blur(function() {
			if( $(this).val() == '' ) {
				$(this).val('search');
			}
		});
		
	}
	
};

$(document).ready(kic.start);
