$(function() {
	$('#carthumb li').mouseover(function() { 
			var sursa= $(this).attr('title'); 
			$('#bigpic img').attr('src','/uploads/tx_cars/medium/'+sursa);
			$('#bigpic').attr('href','/uploads/tx_cars/'+sursa);
	});
	$('#carthumb li').click(function() { 
			var sursa= $(this).attr('title'); 
			$('#bigpic img').attr('src','/uploads/tx_cars/medium/'+sursa);
			$('#bigpic').attr('href','/uploads/tx_cars/'+sursa);
	});
	$('#imobilthumb li').mouseover(function() { 
			var sursa= $(this).attr('title'); 
			$('#bigpic img').attr('src','/uploads/tx_imobiliare/medium/'+sursa);
			$('#bigpic').attr('href','/uploads/tx_imobiliare/'+sursa);
	});
	$('#menu > li').mouseover(function() { $('#menu li').removeClass('hover'); $(this).addClass('hover');})
	$('#menu > li').mouseout(function() { $(this).removeClass('hover');});
	$('#banners a').mouseover(function() { 
			var sursa= $(this).attr('title'); 
			var sursaback = $(this).children().attr('src');
			$(this).attr('title',sursaback);
			$(this).children().attr('src',sursa);
			//$('#bigpic').attr('href',sursa);
	});
	$('#banners a').mouseout(function() { 
			var sursa= $(this).attr('title'); 
			var sursaback = $(this).children().attr('src');
			$(this).attr('title',sursaback);
			$(this).children().attr('src',sursa);
			//$('#bigpic').attr('href',sursa);
	});

});	


function DoSelect(id,value){
		$('#'+id).val(value);
}
