function sel_region(id)
{
	$('#region').html('<img src="http://www.sexyonot.it/css/images/ajax-loader.gif" />');
	$('#region').load('load_ajax.php?id=region&&val='+id);
}

function rating(id)
{
	$('#rating_div').load('rating.php?user_code='+id);
}

function bestoff(id)
{
	$('#bestoff_load').load('load_ajax.php?id=best&val='+id);
	$('#bestoff').fadeIn();

	setTimeout( "$('#bestoff').fadeOut();", 3000);
}

function load_other(id)
{

	$('#photo_other').html('<img src="http://www.sexyonot.it/upload/'+id+'" />');	
}

function add_to_favorites(id)
{
	$('#add_to_favorites').load('load_ajax.php?id=favorites&val='+id);
	$('#add_to_favorites_msg').fadeIn();
	$('#favorites_link').html('<a style="cursor:pointer" onclick="remove_favorites('+id+')">Remove Favourite</a>');
	$('#add_to_favorites_msg').html('  Your favorite has been added! ');
	setTimeout( "$('#add_to_favorites_msg').fadeOut();", 3000);
}

function remove_favorites(id)
{
	$('#add_to_favorites').load('load_ajax.php?id=favorites_remove&val='+id);
	$('#add_to_favorites_msg').fadeIn();
	$('#favorites_link').html('<a style="cursor:pointer" onclick="add_to_favorites('+id+')">Add to Favourites</a>');
	$('#add_to_favorites_msg').html('  Your favorite has been deleted! ');
	setTimeout( "$('#add_to_favorites_msg').fadeOut();", 3000);
}
