$(function() {
	//topnav flash object
	var flashvars = {};
	var params = {loop:true,wmode: "transparent"};
	var attributes = {};
	swfobject.embedSWF("/images/flash elements/phone.swf", "phone", "286", "61", "7.0.0","/flash/expressInstall.swf", flashvars, params, attributes);
 
	//minimise info_panel in footer
	$('#info_panel').hide();
   
	// toggles the infor_panel on clicking the panel_toggle link  
	// and toggles the text of the panel_toggle link
	$('a.panel_toggle').click(function() {
  
	if ($(this).text() == 'Aga and Spillers - Hide this info') {
		$(this).text('Aga and Spillers - Find Out More');
	} else {
		$(this).text('Aga and Spillers - Hide this info');
	}
	$('#info_panel').slideToggle('slow');
	return false;
	});
});