// JavaScript Document

function popup(id){
	if($("#popup").length==0) $('body').append('<div id="popup"></div>');
	if(id==0){
		$("#popup").fadeOut("fast");
	}else{
		var imgurl;
		var newsize;
		$("#popup").hide();
		newsize = (Math.round(Math.min(document.documentElement.clientHeight,document.documentElement.clientWidth)/10)*10) - 100;
		newsize = ".fit." + newsize + "x" + newsize + ".jpg";
		imgurl = id.href.replace(".jpg", newsize);
		$("#popup").html('<a href="javascript:popup(0);" style="background-image:url(' + imgurl + ');">&nbsp;</a>');
		$("#popup").fadeIn("slow");
		return false;
	}
}


$(function(){
	// On Load
	// Sort Link Styles
	$('a[href^="http"]').click(function(){this.target = "_blank";});
	$('a[href$=".jpg"]').click(function(){return popup(this);});
	// Show Flyers
	$.ajax({
		method: "get",url: "/_ajax/flyers.htm",
		cache: false,
		success: function(html){ //so, if data is retrieved, store it in html
			$("#nav>.flyers").html(html); //show the html inside .content div
		}
	});
	// Show Attending
	if($("#attending").length>0){
		$.ajax({
			method: "get",url: "/_ajax/attending.php?e=" + window.location.href,
			cache: false,
			success: function(htmlb){ //so, if data is retrieved, store it in html
				$("#attending").html(htmlb); //show the html inside .content div
				
			}
		});
	};
	// Share
	$("h1").append('<div class="share">Share this page:<a href="/share.php?to=facebook"><img src="/img/siylc/share/facebook.png" alt="Share on Facebook" target="_blank" /></a><a href="/share.php?to=twitter"><img src="/img/siylc/share/twitter.png" alt="Share on Twitter" target="_blank" /></a></div>');
});
