$(function(){

	$(".producer li.producer_item").each(function()
	{
		var id = $('a',this).attr('rel');
		$(this).simpletip(
		{ 
			content: "",
			onBeforeShow: function(){ 
				this.load('/producer_logo/'+id); 
			},
			baseClass: 'producer_tip',
			position: 'right', 
			offset: [-70, 0] 
		}); 
	});
	
	$('#batten_menu').click(function(){
	 $('#batten_producers').show();
	});
	//console.log(document.getElementById("content_result").offsetHeight);
	//$('#menu').height($('#content_result').height()+20);
});

