// JavaScript Document

/*
// €
// --------------------------------------------------------------------------
// searchbox.js 
// by orangepointsolutions Ltd., www.orangepointsolutions.de
// --------------------------------------------------------------------------
*/

$(document).ready(function() {

	/*
	// --------------------------------------------------------------------------
	// search box
	// --------------------------------------------------------------------------
	*/
	
	$('#tab_host').click(function() {
		$(this).addClass("active");
		$('#search_box_container_host').show();
		$('#search_box_container_supplier').hide();
		$('#tab_supplier').removeClass("active");
	});
	
	$('#tab_supplier').click(function() {
		$(this).addClass("active");
		$('#search_box_container_supplier').show();
		$('#search_box_container_host').hide();
		$('#tab_host').removeClass("active");
	});
	
	if ($.browser.msie) {
		$("#search_box_headline").textShadow();
		$("#search_box_navigation li").textShadow();
	}

	// -- end of search box --

});

// -- end of searchbox.js --

