//** ROUNDED CORNERS and JQUERY GOODIES**//
$(document).ready(function(){
		$('.myRound').corner("9px");

$(".subCats").hide();
		$('a.cat').click(function(event) {
			event.preventDefault();
			var id = this.id.replace('cat_', "");
			   $(".subCats").hide();
			   $(".headAd").hide();
			   $("#"+id+"").show();
		});
});

//LOAD IN THE CATEGORIES
		
		

//** LOAD INFORMATION INTO A SEPARATE DIV **//
function loadContent(elementSelector, sourceUrl, sectionId) {
	
	$(""+elementSelector+"").load(sourceUrl);
	$(""+elementSelector+"").animate({ backgroundColor: "#fbc7c7" }, "fast")
							.fadeOut(2000);
							
	$(""+sectionId+"").animate({ backgroundColor: "#fbc7c7" }, "fast")
					  .fadeOut(2000);
	return false;
}

function loadVideo(elementSelector, sourceUrl) {
	
	$(""+elementSelector+"").load(sourceUrl);
	return false;
}