//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">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">http://www.facebook.com/refreshi</a></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('.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();
	});
});
