$(document).ready(function(){ 
    $('a.external').click(function(){
        window.open(this.href);
        return false;
    });
	
	$('ul.sf-menu').superfish({
		delay: 1000,   // one second delay on mouseout, adjust for longer/slower delay
		animation: {opacity:'show',height:'show'},  // fade-in and slide-down animation
		speed: 'fast',   // faster animation speed
		autoArrows: true,   // disable generation of arrow mark-up – for arrows change to true
		dropShadows: false  // disable drop shadows  - for shadows change to true
	});
	
	//Accordion setup for tmd.html and tmj.html
	//jQuery('#testimonial_acc').accordion({
	//	autoHeight: false,
	//	active: false,
	//	header: '.head',
	//	fillSpace: false,
	//	animated: 'slide',
	//	collapsible: true,
	//	event: 'click'
	//});
	
	// Graceful backwards compatability for visitors without javascript enabled
	// By default the readmore link is hidden and the entire text displayed. With JS
	// enabled you only see the first paragraph and the read more link.
	$('#more-button').removeClass('hidden');
	$('#read-more').hide();
	
	$('#more-button').click(function() {
		$('#read-more').slideToggle(400);
		
		// update link text
		var $link = $(this);
		if ( $link.text() == "Read More" ) {
			$link.text('Read Less');
		} else {
			$link.text('Read More');
		}
		
		// supress default link action
		return false;
		
	});
	
	$(document).pngFix();
	
});