$(function(){
	var popupClass = 'popupwindow';
	var assl = $('a[href^="https://' + window.location.hostname + '"]');
	assl.addClass(popupClass);
	
	$('a.media').media();
	
	$('.' + popupClass).popupwindow();
	$("#machineSearchForm #msc").click(function(){
		thisFrm = $("#machineSearchForm #msc");
		$('thisFrm input[type=text]').val('');
		$('thisFrm input[type=checkbox]').attr("checked","");
		$('thisFrm input[type=checkbox]').removeAttr("checked");
		$('thisFrm input[type=radio]').removeAttr("checked");
		$('thisFrm option').removeAttr("selected");
		return false;
	});
});


