$(function(){
	$('input:radio[name=buy_rent]').change( function(){
		show_hide_prices( $('input:radio[name=buy_rent]:checked').val() );
	});
	show_hide_prices( $('input:radio[name=buy_rent]:checked').val() );
});

function show_hide_prices(value){
	if( value == 2 )
	{
		$('.opt_buy_price').hide();
		$('.opt_rent_price').show();
	}
	else
	{
		$('.opt_buy_price').show();
		$('.opt_rent_price').hide();
	}
}

