function reload_scooter_box(id){
	$(".brands_carousel").html('<img src="'+domain_name+'/templates/bakker/images/ajax-loader.gif" style="margin:74px 0px 0px 76px;" />');
	$(".brand").css("border","1px solid #cdccc9");
	$(".brand#"+id).css("border","1px solid red");
	
	$.post(domain_name+"/templates/bakker/script/scooter_show.php", { id: id},
		function(data){
			if(data != ''){
				$(".brands_carousel").html('<ul style="padding:0px;margin:0px;">'+data+'</ul>');
				$(".brands_carousel").carousel({autoSlide: true, loop: true});
			}
		}
	);
}

$(document).ready(function(){
	$(".prod_form_input").focus(function(){
		$(this).val('');
	});
	
	$("#comment").focus(function(){
		$(this).html('');
	});
});
