$(document).ready(function()
{
	var site = 'http://www.leadingedgescm.com/';
	
	if (!$.cookie('country')) {
		$('#map').show();
	}
	
	$('#map #set').click(function()
	{
		$.cookie('country', $('#map select option:selected').attr('value'), { expires: 364 });
		window.location = site+"&country="+$('#map select option:selected').attr('value');
		$('#map').hide();
		return false;
	});
		
	$('#change-country-wrapper #set').click(function()
	{
		$.cookie('country', $('#change-country-wrapper select option:selected').attr('value'), { expires: 364 });
		window.location = site+"&country="+$('#change-country-wrapper select option:selected').attr('value');
		$('#map').hide();
		return false;
	});
	
	/*$('.person h4').each(function(){
		$(this).click(function(){
			$(this).siblings().toggle();
		});
	});*/
	
	$("#sitemap-wrapper").hide();
	
	$("#sitemap-toggle a").toggle(
		function(){
			$("#sitemap-toggle a").removeClass('dark').addClass('light');
			$("#sitemap-wrapper").slideDown("slow");
			return false;
		},
		function hide(){
			$("#sitemap-toggle a").removeClass('light').addClass('dark');
			$("#sitemap-wrapper").slideUp("slow");
			return false;
		}
	);

	$('#close-map').hide();
	$('#close-map').click(function(){$('#map').hide();});
	
	if ( $('#people').length > 0 )
	{
		$("#people").easySlider(
		{
			continuous: true,
			speed: 400,
			pause: 4000,
			nextId: "people-next",
			prevId: "people-prev"
		});
	}
	
	if ( $('#partners').length > 0 )
	{
		$("#partners").easySlider(
		{
			continuous: true,
			speed: 400,
			pause: 4000,
			nextId: "partners-next",
			prevId: "partners-prev"
		});
	}	
	
	$("ul.sf-menu").supersubs(
	{ 
	    minWidth:    12,
	    maxWidth:    27,
	    extraWidth:  1
	}).superfish();
	
	if ($('#tabs').length > 0) $('#tabs > ul').tabs({ selected: 0 });
	
});

function popitup(url) {
	newwindow=window.open(url,'name','height=400,width=250');
	if (window.focus) {newwindow.focus()}
	return false;
}
