var defualt_key="ENTER TULIP INK TYPE";
var product_family1;
product_family1=[ {text:"VJ33", en_id:'480'},
{text:"WP20", en_id:'312'},
{text:"VE32", en_id:'311'},
{text:"VJ03", en_id:'272'},
{text:"VU60", en_id:'157'},
{text:"VK64", en_id:'155'},
{text:"VJ05 / VJ33", en_id:'153'},
{text:"VE33", en_id:'36'},
{text:"TX71", en_id:'34'},
{text:"TX70", en_id:'33'},
{text:"WP61", en_id:'13'},
{text:"VE31 / VE32", en_id:'11'},
{text:"VE30 / VE32", en_id:'7'},
{text:"WS20", en_id:'5'} ]

		
$(document).ready(function(){
	//Default Action
	try {$(".select2").msDropDown({mainCSS:'dd5'});
		//alert($.msDropDown.version);
		//$.msDropDown.create("body select");
		$("#ver").html($.msDropDown.version);
		} catch(e) {
			alert("Error: "+e.message);
		}
		
$("#printer").change(function(){$("#pro_url_title").search();});
$("#pro_url_title").blur(function(){$(this).search();});

$("#pro_url_title").autocomplete(product_family1, {
  formatItem: function(item) {
    return item.text;
  }
}).result(function(event, item) {  
		var myvalue=""; if($(this).val()!=defualt_key){myvalue=item.en_id;$("#en_id").val(item.en_id);}
		$.ajax({
		type: 'POST',
		url: 'http://tulipinks.com/site/index.php/_ajax/product_filter/'+myvalue,
		data: "printer="+$("#printer").val(),
		success: function(data){$("#allcontainer").html(data);}
		});
		return false;
		});
});


function validmyform(){if($("#printer").val()=="" && $("#pro_url_title").val()==defualt_key ){return false;}}
