jQuery(document).ready(function($) {

	$('#tab-promotional-gifts').live('hover',function(){
		$("#seo-tabs ul.tabs li span").removeClass("active"); //Remove any "active" class
		$('#tab-promotional-gifts').addClass("active"); //Add "active" class to selected tab

		if($('#choose').length != 0){
			$('#choose').hide();
		}
		if($('#much-more').length != 0){
			$('#much-more').hide();
		}
		if($('#where').length != 0){
			$('#where').hide();
		}
		if($('#around-uk').length != 0){
			$('#around-uk').hide();
		}
		if($('#promotional-gifts').length != 0){
			$('#promotional-gifts').show();
		}
	}); 

	$('#tab-choose').live('hover',function(){
		$("#seo-tabs ul.tabs li span").removeClass("active"); //Remove any "active" class
		$('#tab-choose').addClass("active"); //Add "active" class to selected tab

		if($('#much-more').length != 0){
			$('#much-more').hide();
		}
		if($('#where').length != 0){
			$('#where').hide();
		}
		if($('#around-uk').length != 0){
			$('#around-uk').hide();
		}
		if($('#promotional-gifts').length != 0){
			$('#promotional-gifts').hide();
		}
		if($('#choose').length != 0){
			$('#choose').show();
		}
	}); 

	$('#tab-much-more').live('hover',function(){
		$("#seo-tabs ul.tabs li span").removeClass("active"); //Remove any "active" class
		$('#tab-much-more').addClass("active"); //Add "active" class to selected tab

		if($('#choose').length != 0){
			$('#choose').hide();
		}
		if($('#where').length != 0){
			$('#where').hide();
		}
		if($('#around-uk').length != 0){
			$('#around-uk').hide();
		}
		if($('#promotional-gifts').length != 0){
			$('#promotional-gifts').hide();
		}
		if($('#much-more').length != 0){
			$('#much-more').show();
		}
	}); 

	$('#tab-where').live('hover',function(){
		$("#seo-tabs ul.tabs li span").removeClass("active"); //Remove any "active" class
		$('#tab-where').addClass("active"); //Add "active" class to selected tab

		if($('#choose').length != 0){
			$('#choose').hide();
		}
		if($('#much-more').length != 0){
			$('#much-more').hide();
		}
		if($('#around-uk').length != 0){
			$('#around-uk').hide();
		}
		if($('#promotional-gifts').length != 0){
			$('#promotional-gifts').hide();
		}
		if($('#where').length != 0){
			$('#where').show();
		}
	}); 

	$('#tab-around-uk').live('hover',function(){
		$("#seo-tabs ul.tabs li span").removeClass("active"); //Remove any "active" class
		$('#tab-around-uk').addClass("active"); //Add "active" class to selected tab

		if($('#choose').length != 0){
			$('#choose').hide();
		}
		if($('#much-more').length != 0){
			$('#much-more').hide();
		}
		if($('#where').length != 0){
			$('#where').hide();
		}
		if($('#promotional-gifts').length != 0){
			$('#promotional-gifts').hide();
		}
		if($('#around-uk').length != 0){
			$('#around-uk').show();
		}
	}); 

});


