
	var itemSelected = false;	

	function indItemCheck(e) {
		
		$(".ind_kit_div").each(function(){
			
			//alert($(e).attr("myid"))
			
			if ( e == this ) {
				
				itemSelected = true;
				
				$(this).find(".hiddencheck").attr('disabled',"");
				$(this).find("#checkimg").attr("src","/sharedImages/hb2010/images/order_chk.gif");
			}
			else {
				$(this).find(".hiddencheck").attr('disabled',"disabled");
				$(this).find("#checkimg").attr("src","/sharedImages/hb2010/images/order_unchk.gif");				
			}
			
		});
		
	}
	
	function changeTab(tab) {
		
		if ( tab == '' || tab == undefined ) {
			tab = 0;
		}
		
		$("#content_tab_content_wrapper").html("<p align='center'><img src='/sharedImages/hb2010/images/loading.gif'></p>");
		
		$("#content_tab_content_wrapper").load("?tab="+tab);
		
	}

	$(document).ready(function() {

		indItemCheck(null);

		$(".ind_kit_div").click(function(){
			indItemCheck(this);
		});

		$("#viewform").submit(function(){
			
			if ( itemSelected != true ) {
			
				alert("Please select an item to continue");
				
				return false;
			
			}
			
			return true;
			
		});

		$(".ind_tab").hover(
			function() { $(this).addClass("ind_hover"); },
			function() { $(this).removeClass("ind_hover"); }
		);
		
		$(".ind_tab").click(function() {
			changeTab($(this).attr("tabid"));
		});

		changeTab(0);

	});	
