// JavaScript Document
$(document).ready(function(){


	//OVERLABEL
	$("#loginboxouter label").overlabel();
	$("#newsletterboxouter label").overlabel();
	
	$('div.expandable').expander({
		slicePoint:       240,  // default is 100
		expandText:         '...', // default is 'read more...'
		collapseTimer:    0, // re-collapses after 5 seconds; default is 0, so no re-collapsing
		userCollapseText: '[^]'  // default is '[collapse expanded text]'
	  });
	
	
	//$('.round_this').corner();
	
	
	$("div.hide").hide();
	$("td input[type=radio]").click(function(){
			$("div.hide").hide();
			$("#" + this.value + "data").animate({
			  opacity: 'show'
			}, 400);
	
	 });



});



