var fullImageLoc = '/userfiles/photos/product_large/';

$(document).ready(function() {
	$(".thumbSwap").click(function() {
		var oldSrc = $(this).attr('src');
		var arrSplit = oldSrc.split("/");
		$("#fullImage").attr('src', fullImageLoc + arrSplit[4]);				   
	});
});

function popWindow(url,name,width,height,scrollbars){
	popWindow_n = window.open(url,name,"menubar=false,location=false,scrollbars=" + (scrollbars ? "yes" : "false") + ",toolbar=false,width=" + width + ",height=" + height + ",status=false,resizable=0");
	popWindow_n.focus();
}