// bodywrappers.js

$(document).ready(function() {

	$("#leftImageArea img.details_thumb").click(function() {
		var p_image_id = $(this).attr("id").split("details_thumb_")[1];
		var img_src = $("#leftImageArea img#details_large_" + p_image_id).attr("src");
		$("#leftImageArea  #image_large").fadeOut("fast", function() {
			$(this).attr("src", img_src).fadeIn()
		});
		$.ajax({
			type: "POST",
			url: "inc/get_pictured_product.php",
			data: "p_image_id=" + p_image_id,
			success: function(msg) {
				if ( msg != "fail" )
					$("#alsoSeenWith").html(msg);
				else
					$("#alsoSeenWith").html("");
			}
		});
	});

	if ($("#leftImageArea").height() > $("#rightContentArea").height()) {
		$("#rightContentArea .findaStore").height($("#rightContentArea .findaStore").height() + ($("#leftImageArea").height() - $("#rightContentArea").height()));
	}

});

function setupSearchBox(default_text) {
	$("#freetext_search_box").val(default_text).focus(function() {
		if ( $(this).val() == default_text ) {
			$(this).val("");
		}
	}).blur(function() {
		if ( $(this).val() == "" ) {
			$(this).val(default_text);
		}
	});
}

