function samLoad(id,url) {
  $(id).load(url);
}

function samSetActive(id,no_remove) {
  if (typeof no_remove == "undefined") {
    $('.p_choice').removeClass('p_choice_active');
  }
  $(id).addClass('p_choice_active');
}

function samRoundCorners() {
		$('.outer').corners('5px');
		$('.inner').corners('5px');
		$('.inner_dark').corners('5px');
		$('.rounded').corners('6px');
		$('.rounded_h').corners('6px');
		$('.trounded').corners('5px top');
		$('.tinner').corners('5px top');
		$('.binner').corners('5px bottom');
}

function samRoundCorner() {
		$(".bgrounded").corner();
		$('.player_rounded').corner();
}

function samSkinInit() {
  samSetActive('#default','no_remove');
}

