/*====
 * from the web tabs
 *================================================ */

$(document).ready(function() { 
	$('div#fromWeb').addClass("active");
	$('div#fromWeb #tabTwo').css('display', 'none');
	$('div#fromWeb #tabThree').css('display', 'none');
	$('div#fromWeb #tabFour').css('display', 'none');
	$('div#fromWeb #tabFive').css('display', 'none');

	$('div#fromWeb h2.tabOne').click(function() {
		$('div#fromWeb h2.tabOne').addClass("on");
		$('div#fromWeb h2.tabTwo').removeClass("on");
		$('div#fromWeb h2.tabThree').removeClass("on");
		$('div#fromWeb h2.tabFour').removeClass("on");
		$('div#fromWeb h2.tabFive').removeClass("on");
		$('div#fromWeb #tabOne').show();
		$('div#fromWeb #tabTwo').hide();
		$('div#fromWeb #tabThree').hide();
		$('div#fromWeb #tabFour').hide();
		$('div#fromWeb #tabFive').hide();
	});	
	$('div#fromWeb h2.tabTwo').click(function() {
		$('div#fromWeb h2.tabTwo').addClass("on");
		$('div#fromWeb h2.tabOne').removeClass("on");
		$('div#fromWeb h2.tabThree').removeClass("on");
		$('div#fromWeb h2.tabFour').removeClass("on");
		$('div#fromWeb h2.tabFive').removeClass("on");
		$('div#fromWeb #tabOne').hide();
		$('div#fromWeb #tabTwo').show();
		$('div#fromWeb #tabThree').hide();
		$('div#fromWeb #tabFour').hide();
		$('div#fromWeb #tabFive').hide();
	});	
	$('div#fromWeb h2.tabThree').click(function() {
		$('div#fromWeb h2.tabThree').addClass("on");
		$('div#fromWeb h2.tabTwo').removeClass("on");
		$('div#fromWeb h2.tabOne').removeClass("on");
		$('div#fromWeb h2.tabFour').removeClass("on");
		$('div#fromWeb h2.tabFive').removeClass("on");
		$('div#fromWeb #tabOne').hide();
		$('div#fromWeb #tabTwo').hide();
		$('div#fromWeb #tabThree').show();
		$('div#fromWeb #tabFour').hide();
		$('div#fromWeb #tabFive').hide();
	});	
	$('div#fromWeb h2.tabFour').click(function() {
		$('div#fromWeb h2.tabFour').addClass("on");
		$('div#fromWeb h2.tabTwo').removeClass("on");
		$('div#fromWeb h2.tabOne').removeClass("on");
		$('div#fromWeb h2.tabThree').removeClass("on");
		$('div#fromWeb h2.tabFive').removeClass("on");
		$('div#fromWeb #tabOne').hide();
		$('div#fromWeb #tabTwo').hide();
		$('div#fromWeb #tabThree').hide();
		$('div#fromWeb #tabFour').show();
		$('div#fromWeb #tabFive').hide();
	});	
	$('div#fromWeb h2.tabFive').click(function() {
		$('div#fromWeb h2.tabFour').addClass("on");
		$('div#fromWeb h2.tabTwo').removeClass("on");
		$('div#fromWeb h2.tabOne').removeClass("on");
		$('div#fromWeb h2.tabThree').removeClass("on");
		$('div#fromWeb h2.tabFive').removeClass("on");
		$('div#fromWeb #tabOne').hide();
		$('div#fromWeb #tabTwo').hide();
		$('div#fromWeb #tabThree').hide();
		$('div#fromWeb #tabFour').hide();
		$('div#fromWeb #tabFive').show();
	});	
});


/*====
 * end from the web tabs
 *================================================ */

