// JavaScript Document

var MAX_ADV_POPUP = 7;

function removeAdvLinks(popUpNum)
{
	for (var i = 1; i <= MAX_ADV_POPUP; i++)
	{
		if (i != popUpNum)
		{
			$('#advPopup0' + i).css("display", "none");
			$('#advLink0' + i).css("color", "#ffffff");
		}
	}
}

$(document).ready(function()
{
	// exits popups using background click
	$('#smartPopupBG').click(function() {
		$('#smartPopup').fadeOut('slow');
		$('#smartPopupBG').fadeOut('slow');
		$('#advPopup').fadeOut('slow');
		
		// if in advantage & choice page, removes used link
		removeAdvLinks(0);
	});
	
	// closes advantage & choice popup using exit buttonn
	$('img.btnExit').click(function() {
		$('#smartPopupBG').fadeOut('slow');
		$('#advPopup').fadeOut('slow');
		
		// if in advantage & choice page, removes used link
		removeAdvLinks(0);
	});
	
	// shows advantage menu01 : bumper bars
	$('#advIcon01').click(function() {
		$('#smartPopupBG').fadeIn('slow');
		$('#smartPopupBG').animate({opacity:0.5}, 1000);
		$('#advPopup').fadeIn('slow');
		$('#advPopup01').fadeIn('slow');
		$('#advLink01').css("color", "#f26631");
	});

	// shows advantage menu01 : bumper bars
	

	$.fn.colorbox.settings.bgOpacity = "0.5";

	//Set the hidden parameter ID of the edit form
	$(".resource").click(function() { 
		myid = this.id;
		myid = myid.replace("e.","");
		$("#dID").attr("value",myid);
		

	});

	//open the edit form with colobox
	$(".resource").colorbox({
		width:"550", 
		height:"325", 
		inline:true, 
		href:"#downloadPopup",
		opacity: 0.7,
		onClosed: function(test){
			$("#info").hide();
			$("#downloadArea").show();
		}
	});



			
			
			
			
	
	
	

});
