function hasRoundedCorners(){
     jQuery("body").addClass("rc");
}

function countrySpecific(){
	var country = jQuery(".cbolds-mainNav a.sel span span").text().toLowerCase();
	country = country.replace(/ /, "-");
	if(country != "home"){
		jQuery("#cbolds-header").addClass("cbolds-" + country);
	}
}

jQuery.noConflict();

jQuery(document).ready(function(){
	if (jQuery.browser.msie){
		if(parseInt(jQuery.browser.version) < 6){
		}
		else{
			loadRcFunctions()
		}
		
	}else{
		loadRcFunctions()
	}
});

function loadRcFunctions(){
	hasRoundedCorners();
	/*
	rc_main();
	rc_footer();
	*/
	// rc_header();
	/*
	rc_rhc();
	*/

	countrySpecific();
	if(jQuery("#cbolds-all.cbolds-home").length > 0){
		jQuery("#cbolds-slidecontent").easySlider();
	}
}