// JavaScript Document
	$(document).ready(function(){
	var UserPage = document.location;

	var type = '';
	if($('#LoadSampleImageH').html() != null)
	{
		type = 1;//Horizointal
		
	}
	if($('#LoadSampleImageV').html() != null)
	{
		type = 2;//Vertical
	}
	$.ajax({
		url: "product_assets/sample_product_image.php",
		type: 'POST',
		data: "UserPage="+UserPage+"&type="+type,
		async: false,
		success: function(msg)
		{ 
			if(type == 1)
			{
				$('#LoadSampleImageH').html(msg);
			}
			if(type == 2)
			{
				$('#LoadSampleImageV').html(msg);
			}
		}
	});
 });
