

$(document).ready(function(){ 
						   
//Rounded Corners for Feature Images					   
	$(".featureIMG") .before('<span class="rounded">' + '</span>');
	
//Rounded Corners for main Banner Image					   
	$("#banner") .before('<span class="rounded">' + '</span>');
	
//Extra Span for Blockquote Formatting	
	$("#quotation > blockquote > p") .after('<span>' + '</span>');

//Tabbed Content on Homepage
	$(".domtabs").tabs();
	
//Make List Of Items Clickable
	$(".selectBlock li").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;});
	
//If Making List Of Items Clickable Add Pointer CSS	
	$(".selectBlock li").css("cursor","pointer");

//Make Header Clickable	
	$("#header > blockquote > p").click(function(){
	  window.location=$("#header").find("a").attr("href"); return false;});
	
//If Header Clickable Add Pointer CSS	
	$("#header > blockquote > p").css("cursor","pointer");
	
//Clean up TinyMCE - Removes empty <P> Tags and <P> Tags containing only <br/>
	$("#mainContent p br:only-child").remove();
	$("#mainContent p:empty").remove();

//Clean up TinyMCE - Removes any <br/> tags from empty webblerimage DIVS
	$("div.webblerimage:empty").remove();
	$("div.webblerimage br:only-child").remove();

//Removes bold text from listing page intro text
	$(".contentListing li p strong").css({fontWeight:"normal"});
	
});