$(function(){
	/*simulation select golbal binder*/
	$("#ProductSelect").CreateSimSelect();
	$("#subSimSelect li").bind("click", function(){
		   $("#subSimSelect").hide();
		   window.location = "/"+$(this).attr("locale")+"/compare/"+$(this).attr("categoryId")+".jspx";
	   });
	
	$(window).bind('resize',function (){
		if($(".subSimSelect").css("display")=="none")
			return;
		
		$(".subSimSelect").positionBy({
			target:$("#ProductSelect"),
			targetPos: 3,
			elementPos:0
		}).show("fast");
	});
});

