$(document).ready(function(){
	
	$("a[rel='dl_link']").live("click",function(){
		var cycle = $(this).parent().is(".events_subdiv");
		var href = $(this).attr("href");
		
		$("#image_download_bg").html('&nbsp;').fadeIn();
		$("#image_download").html('<div class="preloading slants"><h3>Image Loading...</h3><img src="/img/loading.gif" /></div>').fadeIn();
		
		$("#image_download").load(href,	{},
			function(){
				if(cycle){
					if(!(undefined===window.cycle_interval)){
						clearInterval(window.cycle_interval);
						window.cycle_interval = 0;
					}
				}
			}
		);
		
		return false;

	});
	
	$("#image_view > a.close").live('click',function(){
		if(!(undefined===window.cycle_interval)){
			if(!window.cycle_interval){
				window.cycle_interval = setInterval(cycle,7000);
			}
		}
		$("#image_download").fadeOut().animate({opacity:1},1000).children().remove();
		$("#image_download_bg").fadeOut();
	});
	
	$("#image_download_bg").click(function(){
		if(!(undefined===window.cycle_interval)){
			if(!window.cycle_interval){
				window.cycle_interval = setInterval(cycle,7000);
			}
		}
		$("#image_download").fadeOut().animate({opacity:1},1000).children().remove();
		$(this).fadeOut();
	});
	
});