(function($) {
	$.fn.contactPopup = function(options) {
		var options = $.extend({
							type: 'normal',
							iframeURL: 'http://192.168.1.11/createcss/pf/popup/',
							targetFile: ''/* 'info.html' */
							/* targetFile: 'contact.html' */
							},options);
							
		/** initial ----------------------------------- */
		var popup = jQuery('<div class="popup-wrapper"><div class="bg-close-area"></div><div class="contact-block"><a href="#" title="close this popup" class="close-btn"><a><iframe src="'+options.iframeURL+options.targetFile+'" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:500px; height:450px; margin-top:38px;" allowTransparency="true"></iframe></div></div>');
		this.append(popup);
		
		popup.find('.bg-close-area').click(function(e){
			e.preventDefault();
			closePopup();
		});
		popup.find('a.close-btn').click(function(e){
			e.preventDefault();
			closePopup();
		});
		
		function closePopup(){
			popup.remove();
		}
		
	} // end plugin
})(jQuery);




