/* load form submit detector 
window.onload = function () {
	document.getElementById("link_1").onclick = function () {
		return changeImage(1)
	}
}*/

/* remove text from field*/
function changeImage(theid) {
	
	document.getElementById("link_1").className = '';
	document.getElementById("link_2").className = '';
	document.getElementById("link_3").className = '';
	document.getElementById("link_4").className = '';
	document.getElementById("link_5").className = '';
	
	var mainimage   = document.getElementById("main_image");
	var mainlink    = document.getElementById("main_image_link");
	var mainlinkt   = document.getElementById("main_image_link2");
	var clickedimg  = document.getElementById("thumb_"+theid);
	var clickedlink = document.getElementById("link_"+theid);
	
	mainimage.src = 'image.php?url='+clickedlink.href+'&width=240';
	clickedlink.className = 'sel';
	mainlink.href = clickedlink.href;
	mainlinkt.href = clickedlink.href;
	
	return false;
	
}

$(document).ready(function(){
	
	// Home Tabs
	
	$('#prod_tab_size').hide();
	
	$('#prod_tab_descriplink a').click(function(){
		$('.prodtabon').hide();
		$('.prodtabon').removeClass('prodtabon');
		$('#prod_tab_descrip').show();
		$('#prod_tab_descrip').addClass('prodtabon');
		$('#prod_tabs .on').removeClass('on');
		$('#prod_tabs #prod_tab_descriplink').addClass('on');
		return false;
	});
	
	$('#prod_tab_sizelink a').click(function(){
		$('.prodtabon').hide();
		$('.prodtabon').removeClass('prodtabon');
		$('#prod_tab_size').show();
		$('#prod_tab_size').addClass('prodtabon');
		$('#prod_tabs .on').removeClass('on');
		$('#prod_tabs #prod_tab_sizelink').addClass('on');
		return false;
	});
	
});