// activate compatibility mode for other libraries
jQuery.noConflict();

// init 
jQuery(document).ready(function () {
	nh_popup.initLinks();
});

var nh_popup = {
	initLinks : function(){
		jQuery('a.openConfigurator').bind('click', openSelectedUrl);
		
		function openSelectedUrl(e) {
			e.preventDefault();
			var popupLink = '/fileadmin/scripts/nh_popup/nh_popup.php?url=' + encodeURIComponent(this.href);
			window.open(popupLink,'productCalculator','width=950,height=650,scrollbars=yes,location=no');
		}
	}	
}