$(window).load(function(){
	$('.nxs_details_productvid').show();
	
	$('#nxsVariantSelect').change(function(){
		location.href = $('#nxsVariantSelect').val();
	});
	
	$('#sizeSelector').keyup(function(){
		var sFilter = $(this).val();
		$('#sizeList a').hide();
		$("#sizeList a:contains('" + sFilter.toUpperCase() + "')").show();
	});
});

$('.nxs_details_productvid').click(function(){
	$('.nxs_bg_mask').show();
	$('.nxs_details_prodvid_popup').show();
	$('select').hide();
});

$('.nxs_bg_mask').click(function(){
	$('.nxs_bg_mask').hide();
	$('.nxs_details_prodvid_popup').hide();
	$('select').show();
});

$('.nxsCloseLabel').click(function(){
	$('.nxs_bg_mask').hide();
	$('.nxs_details_prodvid_popup').hide();
	$('select').show();
});

