$(document).ready(function() {
	
	// Expand Panel
	$("#uk").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html("<h1>Movetech UK </h1><p>Part of the British Turntable Group<br>Emblem Street, Bolton, Lancs, BL3 5BW, UK<br>t: +44 (0)1204 525626</p>");
		$("#country1").html("");
	
	});
	$("#na").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html("<h1>Western Canada</h1><p>Ashdown Distributors Ltd.<br>283183 Township Road 230B<br>Rocky View (Calgary), AB<br>Canada, T1X-0G9<br>403-220-2020</p>");
		$("#country1").html("");
	
	});	
	$("#ps").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html("<h1>Park and Slide</h1><p><strong>Park and Slide</strong><br>13487 Brightview Way<br>Gainesville, VA 20155<br>Email:<a href='mailto: info@parkandslide.com'> info@parkandslide.com</a><br>Office: (703) 468-1455</p>");
		$("#country1").html("");
	
	});	
	$("#mexico").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html("<h1>South America (Mexico)</h1><p>Maxisoluciones S De Rl<br>Plaza Bonita 7 Zona Prima<br>Av. Mexico 3370<br>Guadalajara, Jal<br>44670<br>(33) 3648-5589<br><a href='http://www.maslugar.com' target='_blank'>www.maslugar.com</a><br><a href='mailto:seebeemax@gmail.com'>seebeemax@gmail.com</a></p>");
		$("#country1").html("");
		
	});
	$("#sa").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html('<h1>Countries</h1><ul><li><img src="images/br-t.gif" width="30" alt="" /> BRAZIL</li><li><img src="images/ar-t.gif" alt="" width="30" /> ARGENTINA</li><li><img src="images/co-t.gif" alt="" width="30" /> COLOMBIA</li></ul>');
		$("#country1").html('');
		
	});	
	$("#af").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html('<h1>Countries</h1><ul><li><img src="images/sf-t.gif" width="30" alt=""/> SOUTH AFRICA</li><li><img src="images/eg-t.gif" alt="" width="30" /> EGYPT</li><li><img src="images/zi-t.gif" alt="" width="30"/> ZIMBABWE</li></ul>');
		$("#country1").html('');

	});	
	$("#eu").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html('<h1>Countries</h1><ul><li><img src="images/uk-t.gif" width="30" alt="" /> ENGLAND</li><li><img src="images/it-t.gif" alt="" width="30" /> ITALY</li><li><img src="images/sp-t.gif" alt="" width="30" /> SPAIN</li><li><img src="images/de-t.gif" alt="" width="30" /> GERMANY</li></ul>');
		$("#country1").html('<ul><li><img src="images/sw-t.gif" width="30" alt="" /> SWEEDEN</li><li><img src="images/fr-t.gif" alt="" width="30" /> FRANCE</li><li><img src="images/da-t.gif" alt="" width="30" /> DENMARK</li><li><img src="images/nl-t.gif" alt="" width="30" /> NETHERLAND</li></ul>');
		
	});	
	$("#as").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html('<h1>Countries</h1><ul><li><img src="images/in-t.gif" width="30" alt="" /> INDIA</li><li><img src="images/ue-t.gif" alt="" width="30" /> UAE</li><li><img src="images/ja-t.gif" alt="" width="30" /> JAPAN</li><li><img src="images/ks-t.gif" alt="" width="30" /> KORIA</li></ul>');
		$("#country1").html('<ul><li><img src="images/id-t.gif" width="30" alt="" /> INDONESIA</li><li><img src="images/ch-t.gif" alt="" width="30" /> CHINA</li><li><img src="images/my-t.gif" alt="" width="30" /> MALAYSIA</li><li><img src="images/kw-t.gif" alt="" width="30" /> KUWAIT</li></ul>');
		
	});	
	$("#au").click(function(){
		$("div#panel").slideDown("slow");
		$("#country").html('<h1>Countries</h1><ul><li><img src="images/as-t.gif" width="30" alt="" /> AUSTRALIA</li><li><img src="images/nz-t.gif" alt="" width="30" /> NEWZELAND</li></ul>');
		$("#country1").html('');
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});
