$(document).ready(function(){
	var page = location.href;
	if (page.indexOf('contests.php') > -1)
	{
		$('a#contests_link').css({'background': 'url("/images/active_link.png") repeat-x'});
	}
	else if (page.indexOf('ratings.php') > -1)
	{
		$('a#ratings_link').css({'background': 'url("/images/active_link.png") repeat-x'});
	}
	else if (page.indexOf('members.php') > -1)
	{
		$('a#members_link').css({'background': 'url("/images/active_link.png") repeat-x'});		
	}
	else if (page.indexOf('membership.php') > -1)
	{
		$('a#membership_criteria').css({'background': 'url("/images/active_link.png") repeat-x'});		
	}
	else if (page.indexOf('awards.php') > -1)
	{
		$('a#awards_link').css({'background': 'url("/images/active_link.png") repeat-x'});
	}
	else if (page.indexOf('contacts.php') > -1)
	{
		$('a#contact_link').css({'background': 'url("/images/active_link.png") repeat-x'});
	}
	else
	{
	    $('a#home_link').css({'background': 'url("/images/active_link.png") repeat-x'});
	}
});
