function loadPopup(_href){
	var _popupHolder = $('div.popup');
	var _selectDrop = $('div.optionsDivInvisible, div.optionsDivVisible');
	
	_selectDrop.remove();
	_popupHolder.fadeOut(200, function(){
		$.ajax({
			url: _href,
			success: function(msg){
				_popupHolder.html(msg);
				_popupHolder.fadeIn(400);
				initCastomForms();
				
				// close popup
				$('a.btn-close').click(function(){
					_popupHolder.fadeOut(300, function(){
						_selectDrop.remove();
					})
				});
			}
		});
	});
}


$(document).ready(function(){
	$(document).pngFix();
});
