// JavaScript Document

$(document).ready(function(){

	var seller = $(".seller").attr("id");
	var layout = $(".layout").attr("id");
	var items = $(".items").attr("id");

	if(layout == '1x5'){
		
		var width = '155';
		var height = '550';
	
	}else if(layout == '2x2'){
		
		var width = '225';
		var height = '275';
	
	}else if(layout == '2x4'){
		
		var width = '230';
		var height = '520';
	
	}else if(layout == '3x2'){
		
		var width = '320';
		var height = '280';
	
	}else if(layout == '6x2'){
		
		var width = '555';
		var height = '275';
	
	}else{
		
		var width = '0';
		var height = '0';
		
	}

	var htmlStr = '<iframe src="http://artfire.com/modules.php?name=shop_window&op='+layout+'&seller_id='+seller+'&items='+items+'" frameborder="0" height="'+height+'" width="'+width+'"></iframe>';
	
	$("#dmi").html(htmlStr);

});

