$(document).ready(function(){
	$('#chvsellersbutton').each(function() {
		$(this).corner();
		$(this).hover( 
			function() { $(this).addClass('btnhover');  },
			function() { $(this).removeClass('btnhover'); }
		);
		$(this).click( function() { window.location = '/chv/getstarted.html'; } );
	});
	$('#chvbuyersbutton').each(function() {
		$(this).corner();
		$(this).hover( 
			function() { $(this).addClass('btnhover');  },
			function() { $(this).removeClass('btnhover'); }
		);
		$(this).click( function() { window.location = '/chv/getstarted.html'; } );
	});				
});