﻿// JScript File
var dynZoomURL = ""; 
function HelpPageLoad( zoomURL, width, height ){window.open( zoomURL, '_Zoom','menubar=no,height=' + height + ',width=' + width + ',scrollbars=yes,resizable=yes,top=10,left=10');}
function clearTxtBox( elemObj ){if (elemObj.defaultValue == elemObj.value) {elemObj.value = ""}}
function HideTip( elemID ){if( document.getElementById( elemID ) ){ (document.getElementById(elemID)).style.visibility = "hidden"; } }
function ShowTip( elemID ){if( document.getElementById( elemID ) ){ (document.getElementById(elemID)).style.visibility = "visible"; } }
function ShowWait( elemID ){$('#' + elemID).show(); window.setTimeout('ShowProgressImg()',100);}
function ShowProgressImg(){$('.imgProcessDisplay').attr('src',$('.imgProcessDisplay').attr('src'));}
$(document).ready(function() {
	$('div.lbc').each(function(){var a = $(this).find('.active').get(0);this.scrollTop=a.offsetTop - a.parentNode.offsetTop;});
	$('.hover').hover(
		function() {$(this).attr('src', $(this).attr('src').replace('.jpg', '_hover.jpg').replace('.gif', '_hover.gif'));},
		function() {$(this).attr('src', $(this).attr('src').replace('_hover.jpg', '.jpg').replace('_hover.gif', '.gif'));}
	);
	$('.showPrice').click(function() {$('.showPrice, .viewPrice').hide();$('.hideprice').show().css('display', 'inline');});
	$('#Searchtxtbx').focus(function(){
		if ($(this).val()=="Search GlobalGolf."){$(this).val('').css('color', '#000');}
	}).blur(function(){
		if ($(this).val()==''){$(this).val("Search GlobalGolf.").css('color', '#666');}
	}).keydown(function(e) {
		if(e.keyCode == 13) {doSearch();return false;}
	});
	$('.searchBtnSubmit').click(doSearch);
	$('#promoHdr').click(function () {$("#promoDetail").slideToggle(200);});
	setAltClick();
	$('.textureList div img').mouseover(
		function(){
			p = $(this).parents('table.itemtbl');
			p.find('.glryImg').attr('src', $(this).attr('src').replace('texture/', '').replace('thumb/', 'small/'));
			p.find('a').not('.textureList a').attr('href', $(this).parent().attr('href'));
		}
	);
	$('.glryImg').hover(
		function(){p = $(this).parents('table.itemtbl');p.find('.cattd:first').addClass('cattdhover');},
		function(){p = $(this).parents('table.itemtbl');p.find('.cattd:first').removeClass('cattdhover');}
	);
	$('.emailfrm').focus(function(){
		if ($(this).val()==$(this).attr("title"))
		{
			$(this).val('').css('color', '#000');
		}
	})
	.blur(function(){
		if ($(this).val()=='')
		{
			$(this).val($(this).attr("title")).css('color', '#2A3133');
		}
	});
});
function setAltClick(){$('.prodAltImg').click(function(){$('img.prodMainImg').attr('src', $(this).attr('src').replace('/thumb/', '/large/'));});}
function doSearch(){if( $('#Searchtxtbx').val() != "Search GlobalGolf." ){window.location=BaseUrl+"/gallery/search.aspx?searchstr=" + $('#Searchtxtbx').val();}}