
 $(document).ready(function(){     
	
	//attachment links
	$('#maincontainer a[href$=".pdf"]').each(function(){
    		$(this).wrap("<span class='pdf'></span>");
		}); 
		
	$('#maincontainer a[href$=".doc"]').each(function(){
    		$(this).wrap("<span class='doc'></span>");
		}); 
		
	$('#maincontainer a[href$=".ppt"]').each(function(){
    		$(this).wrap("<span class='ppt'></span>");
		}); 

	//make off site links _blank	
	$("a[href^='http']").not("[href*='ecolites.com.au']").attr('target','_blank');
		
	//add curved corners top and bottoms to block quotes	
	$("#container BLOCKQUOTE").before("<div class='blockTop'>&nbsp;</div>");
	$("#container BLOCKQUOTE").after("<div class='blockBot'>&nbsp;</div>");
	
	//wrap
	$("#contentright .thumbnail").wrap("<div class='rhsCurvedBoxBg'></div>");
	$("#contentright .rhsCurvedBoxBg").before("<div class='rhsCurvedBoxTop'>&nbsp;</div>");
	$("#contentright .rhsCurvedBoxBg").after("<div class='rhsCurvedBoxBottom'>&nbsp;</div>");

	
	
});


