$(document).ready(function(){
$(function(){$(document).pngFix();});

//$(".clientlist ul li:first").css("margin", "20px 0 0 0");
	$("#contactus a").fancybox({'frameWidth': 320, 'frameHeight': 410, 'overlayShow': true });



 
	$('a.toggle').parent('p').next('div').hide();	//select all links with class of toggle, find the next div after the parent and hide them all.
	$('a.toggle').html('Show examples');		// Make all links with class toggle read - show examples
	$('a.toggle').toggle(function(){		// set up the show hide toggle
	$(this).html('Hide examples');		// change the button text to 'hide examples					  
	$(this).parent('p').next('div').slideToggle('slow');return false;},		//then find the next div after the parent and hide it.
	function(){		// Set up the reverse of the toggle...	
	$(this).html('Show examples');		// change the button text to 'show examples						  
	$(this).parent('p').next('div').slideToggle('slow');return false;		//then find the next div after the parent and show it.
	
	
});
 
    })

