/**
 * @author rogerssampaio
 */

function showdiv(site) {
	
	$.getJSON('http://www.coolkeywest.com/switch/switch.php?f=json&format=json&jsoncallback=?', function (json) {
		
	if ($('#thenetwork').hasClass("closed"))	{	
		
		$('#thenetwork').html(json.html);
		
		
		$(".refs").find('a').each(function (i) {
			
			//alert (i);
			
			if ($(this).attr('href') == 'http://'+site+'.com') {
				
				$(this).attr('style','color:#fff;');
				
			}
			
		});
		
		
			
			$('#thenetwork').removeClass('closed');
				
			$('#thenetwork').addClass('open');
			
			$('#thenetwork').slideDown('slow');
		
		} else {
			
			$('#thenetwork').removeClass('open');
			
			$('#thenetwork').addClass('closed');
			
			$('#thenetwork').slideUp('slow');
			
			
		}
	 		
		 
	});
	
	
	
	
}

function change(name){
	
	alert(name);
	
	$('span[name="' + name + '"]').addClass('change');
	
} 

function changeBack(name){
	
	$('span[name="' + name + '"]').removeClass('change');
	
} 

