//jQuery.noConflict();
var errormessage='';
var emailReg=/^([\w-\.]+@([\w-]+\.)+[\w-]{2,6})?$/;
var boxyfollowus='<div class="padding-top"><div class="boxy-content-main label"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td width="45%" align="center"><img src="'+siteurl+'/wp-content/themes/natural/images/socialcons/btwitter.png" alt="Twitter" /></td><td width="5%">&nbsp;</td><td width="50%" align="center"><img src="'+siteurl+'/wp-content/themes/natural/images/socialcons/bfacebook.png" alt="Facebook" /></td></tr><tr><td class="label"><a class="social-media-click" href="http://www.twitter.com/Refreshi" target="_blank" rel="nofollow">http://www.twitter.com/Refreshi</a></td><td>&nbsp;</td><td class="label"><a class="social-media-click" href="http://www.facebook.com/refreshi" target="_blank" rel="nofollow">http://www.facebook.com/refreshi</a></td></tr></table></div></div>';
var boxyloginrequired='<div class="padding-top"><div class="boxy-content-main label"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td width="45%" align="center"><img src="'+siteurl+'/wp-content/themes/natural/images/icons/loginnow.png" alt="Login Now" /></td><td width="5%">&nbsp;</td><td width="50%" align="center"><img src="'+siteurl+'/wp-content/themes/natural/images/icons/signupnow.png" alt="Sign up Now" /></td></tr><tr><td colspan="2">&nbsp;</td></tr><tr><td class="label"><center><a class="social-media-click" href="'+siteurl+'/login" rel="nofollow">Login Now</a></center></td><td>&nbsp;</td><td class="label"><center><a class="social-media-click" href="'+siteurl+'/login?action=register" rel="nofollow">Sign up now</a></center></td></tr></table></div></div>';

function showinfobox(text,mytitle) {
	if(typeof(infoboxy)!='undefined') {
		infoboxy.unload();
	}
	html='<div><div class="boxy-content-main">'+text+'<div class="boxy-close-button">OK</div></div></div>';
	infoboxy=new Boxy(html,{title:'Info'});
	if(mytitle)
		infoboxy.setTitle(mytitle);
}

jQuery(function() {
   Boxy.DEFAULTS.modal=false;
   Boxy.DEFAULTS.closeable=true;
   Boxy.DEFAULTS.closeText='';
	jQuery('.followus.socialnetwork').click(function() {
		if(typeof(loginboxy)!='undefined') {
			loginboxy.unload();
		}
		loginboxy=new Boxy(boxyfollowus,{title:"Follow us on Twitter &amp; Facebook"});
		loginboxy.tween(500,150);
		return false;
	});
	jQuery('.refreshi_wpfp.login_required').click(function() {
		if(typeof(loginboxy)!='undefined') {
			loginboxy.unload();
		}
		loginboxy=new Boxy(boxyloginrequired,{title:"Login Required!"});
		loginboxy.tween(500,150);
		return false;
	});
	jQuery('.boxy-close-button').live('click',function() {
		jQuery(this).closest('.boxy-wrapper').fadeOut();
	});
	jQuery('.social-media-click').live('click',function() {
		jQuery(this).closest('.boxy-wrapper').fadeOut();
	});
});
