


/*
$(".me_vari").click(function(){
    //Get the id of this clicked item
   alert("test");
   pos = this.value;
   
   var parentId = $(this).parent().get(0).id;
   var exploded = parentId.split('_');
   
   
   changePrice(pos, exploded[3]);
   
});
*/

function changePrice(me_vari, testid){
	
	//alert(me_vari + " - " + pid + ' - ' + testid);
	
	
	var me_shortdesc = $('#sd_' + me_vari).val();
	var me_artnum = $('#an_' + me_vari).val();
	var me_price = $('#' + me_vari).val();
	
	$('#me_price1_' + testid).html(me_price);
	$('#test_shortDesc_' + testid).html(me_shortdesc);
	$('#me_artnum').html(me_artnum);
	
	//test_shortDesc_
	
	//alert(me_artnum);
	
}

function me_select_width_auto(id){
	//alert("test");
	//$('#' + id).css("z-index","5");
	//$('#' + id).css("width","auto");
	//$('#' + id).css("width","135px");
	//$('#' + id).css("color","red");
	$('#' + id).css("position", "absolute");
	$('#' + id).css("width", "auto");

}

function me_select_width_fix(id){
	$('#' + id).css("width","135px");
}
/*
$('#del_select').mouseenter(function () {

    $(this).css("width","auto");

});

$('#del_select').mouseout(function () {

    $(this).css("width","170px");

});
*/

