//var base_url = 'http://localhost/idp/';
var base_url = 'http://internationaldayofpeace.org/';

$(document).ready(function(){
	$('a.popup').click(function() {
		window.open(this.href); return false;
	});

	$('.interior #navigation').click(function(){
		window.location=base_url;
	}).css('cursor','pointer');
	
	
	if($('body').attr('id') != 'misc'){
		$('.interior #inner_what_is_peace_day').swapme('_over');
		$('.interior #inner_participate').swapme('_over');
		$('.interior #inner_peacebuilding').swapme('_over');
	}
	
	
	//Add the current state to the current main navigation link
	var body_id = $('body').attr('id');
	$('#'+body_id+' #link_'+body_id).each(function(){
		$(this).css('background-image','url('+base_url+'img/nav/nav_'+body_id+'_active.jpg)');
		$(this).html('');
		$(this).unbind('mouseover');
		$(this).unbind('mouseout');
		$(this).css('cursor','default');
	});
	
	//Add the current state to the current sub navigation link
	var body_rel = $('body').attr('rel');
	$('#link_'+body_id+'_'+body_rel).each(function(){
		$(this).addClass('link_current');
		$(this).unbind('mouseover');
		$(this).unbind('mouseout');
	});
});