function boot(){
		dropdown();
		banner();
		searchText();		
}

function dropdown(){
	$('#main-tabs > ul > li').hover(function(){
			$(this).children('ul').css('display', 'block');
		}, function(){
			$(this).children('ul').css('display', 'none');
		});
}

function banner(){
	
	if($('#banner').length > 0){
		$(".banner-inner").carousel( { effect: "fade", animSpeed: "slow",  autoSlide: true, autoSlideInterval: 7000, loop: true } );	
	}
}

function searchText(){
	$('.search-wrapper input').focus(function(){
		$(this).val('');
	});
	$('.search-wrapper input').blur(function(){
		if($.trim($(this).val()) == '' ){
			$(this).val($(this).attr('title'));
		}
	});
}






