$(document).ready( function()
{
	drawQuotes();
	
	var page = document.location.pathname;
	
	var page_sub = page.substring( page.lastIndexOf( '/' ) + 1 );

	if( page_sub != '' ) { applyBold( page_sub ) }
});

function applyBold( pagename )
{
	// $( 'div#container div#left div#inner-left div.social div.sub-nav a' ).each
	$( 'div#container div#left div#inner-left div.social a' ).each
	(								   
		function( i )
		{
			var href_link = $( this ).attr( 'href' ).replace( '/', '' );
			
			if( pagename == href_link )
			{
				$( this ).contents().wrap( "<span style='color: #5A7EA0; font-weight: bold;'></span>" );
			}
		}
	);
}

function drawQuotes()
{
	var quoteDiv = document.getElementById( "flash-quotes" );
	
	if( quoteDiv != null )
	{
		var so = new SWFObject( "http://cowater.previewsite.ca/PrimaryTemplateFiles/images/quotes.swf", "flashquotes", "210", "240", "9", "#FFFFFFF" );
		so.addVariable( "cycle_on", "true" );
		so.write( "flash-quotes" );
	}
}

