var product_search = "";

$(document).ready(function() {
	if($('#product_detail_thumb_holder').length > 0){
		loadDetails();
	}
	
	if($('#same').length > 0){
		deliveryChecks();
	}
	
	if($('#pay-form').length > 0){
		payForm();
	}
	
	productSearch();
	
	bindFlash();
});

function bindFlash(){
	if(typeof module === 'function'){
		module();
	}
}

function productSearch(){
	product_search = $('#product_search').val();
	
	$('#product_search').bind("click blur",function(){
		if($('#product_search').val() == product_search){
			$('#product_search').val("");
		}else if($("#product_search").val() == ""){
			$('#product_search').val(product_search);
		}
	})
}

function loadDetails(){
	$('#product_detail_thumb_holder ul li a').bind("click",function(){
		var id = $(this).attr("id");
		var matches = id.match(/^thumb-([0-9]+)$/);
		
		// Hide all large images
		$(".image").addClass("hide");

		// Show new image
		$('#image-'+matches[1]).removeClass("hide");
		
		return false;
	});
}

function deliveryChecks(){
	var bind_check = function(){
		if($("#same").attr("checked")){
			$('#billing_address').hide();
			$('#delivery_button').show();
		}else{
			$('#billing_address').show();
			$('#delivery_button').hide();
		}
	}
	
	$('#same').bind("click",bind_check);
	bind_check();
}

function payForm(){
	$('#pay-form').submit();
	return true;
}
