// JavaScript Document

$(document).ready(function() {
	$(".tab, .inactive").live("click",
	function() {
		$(".tab").addClass("inactive");
		$(this).removeClass("inactive");
	});
});

function LoadDDL(dropdownlist)	{
	alert(dropdownlist.selectedIndex);
}
