// Floating Popup Window Settings

<!--
$(function(){
	$('#popup_content').popup(
		{
		starttime: 5,						<!-- When to show popup (in seconds) 0 to start immediately after firing $("ELEMENT_ID").popup() plugin -->
		selfclose: 0,						<!-- After what time self close popup. 0 - disable feature -->
		popup_div: 'popup_container',		<!-- ID of popup DIV-->
		overlay: true,						<!-- turn on/off overlay (true/false) -->
		opacity_level: 0.6,					<!-- opacity level of overlay (from 0 to 1) -->
		overlay_cc: true,					<!-- close popup on overlay click (true/false) -->
		overlay_div: 'popup_overlay',		<!-- ID of overlay DIV -->
		close_id: 'banner_close',			<!-- HTML id of element used to close popup -->
		centered: true,						<!-- center popup vertically -->
		top: 150,							<!-- distance from top to show popup (in px or in percent ie. '20%') - works only for centered=false -->
		left: 150,							<!-- distance from left to show popup (in px or in percent ie. '20%') - works only for centered=false. Set 100% to align right -->
		setcookie: false,					<!-- use cookie to prevent showing popup multiple times (true / false) -->
		cookie_name: 'popup',				<!-- name of cookie, that is used -->
		cookie_timeout: 0,					<!-- how long should cookie be stored (in days, 0 = current session) -->
		cookie_views: 10,					<!-- how many times site may be viewed until the popup will be shown again (0 = don't use this) -->
		floating: true,						<!-- turn on/off floating popup (true/false) -->
		floating_reaction: 700,				<!-- floating reaction in milliseconds (how quickly start floating after scrolling/resizing the page) -->
		floating_speed: 12,					<!-- smaller value = higher speed (by default = 12) -->
		fly_in: false,						<!-- turn on/off fly-in ads popup (true/false) - works only with floating popups -->
		fly_from: 'right',					<!-- if fly_in = true, can be 'top-left', 'top-right', 'left', 'right', 'top', 'bottom', 'bottom-left', 'bottom-right' ('top' by default) -->
		fly_out: true,						<!-- turn on/off fly-out ads popup (true/false) - works only with floating popups -->
		fly_to: 'right',						<!-- if fly_out = true, can be 'top-left', 'top-right', 'left', 'right', 'top', 'bottom', 'bottom-left', 'bottom-right' ('top' by default) -->
		popup_appear: 'fadeIn',				<!-- how popup appears "show" (default), "fadeIn", "slideDown" (has sense when fly_in = false, or with long popup_appear_time) -->
		popup_appear_time: 1000,				<!-- time of appearing (may be "slow", "fast" or number in miliseconds) 0 or empty to show immediately -->
		confirm_close: false,				<!-- show native Javascript confirm box, when user tries to close the popup (default: false) -->
		}
	);
});
-->
