
	$(document).ready( function(){
	
		showPlayOverlays( '.randomTestimonial a', true );
		showPlayOverlays( '#page-content table a', false );
		
		$('ul.sf-menu').supersubs({ 
            minWidth:    10,   // minimum width of sub-menus in em units 
            maxWidth:    20,   // maximum width of sub-menus in em units 
            extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                               // due to slight rounding differences and font-family 
        }).superfish();
        
        $('<span class="sf-sub-indicator"> &#187;</span>').appendTo( '.sf-menu a.sf-with-ul' );
		
	});
	
	function showPlayOverlays( selectors, home )
	{
		var $youtubelinks = $( selectors );
		
		$($youtubelinks).each( function(){
			
			if( $(this).attr('href').indexOf( 'youtube.com' ) !== -1 )
			{
				if( $('img'), $(this) )
				{
					$(this).colorbox({iframe:true, innerWidth:425, innerHeight:344});
					$(this).css({ 'display' : 'block', 'position' : 'relative' });
					
					if( home )
					{
						var x = 10;
					}
					else
					{
						var x = parseInt( $(this).attr('scrollWidth') / 2 - 33 );
					}
					
					$('<img class="youtubeOverlay" src="/sites/pestana/img/play.png" alt="Play Video" style="position:absolute; bottom: 20px; left: '+x+'px;" />').appendTo( $(this) );
				}
			}
		});
	}
