$(document).ready(function()
{
	$('[id^=bid_]').click(function()
	{
		$('.sellerinfo').hide();
		$('#bids').hide();
		
		var id=$(this).attr('id').split('_')[1];
		$('.bidid').text(id);
		$('#ticketid').val(id);
		$('#bids').slideDown();
		$('#dropdown_'+id).append($('#bids')).parents('tr').show().end().slideDown();
	
		return false;
	});
	$('[id^=lookseller_]').click(function()
	{
		$('[id^=dropdown_]').parents('tr').hide();
		$('#bids').hide();
		$('.sellerinfo').hide();
		var id=$(this).attr('id').split('_')[1];
		$('#sellerinfo_'+id).show();		
		return false;
	});
	$('[id^=lookbuyer_]').click(function()
	{
		$('[id^=dropdown_]').parents('tr').hide();
		$('#bids').hide();
		$('.buyerinfo').hide();
		var id=$(this).attr('id').split('_')[1];
		$('#buyerinfo_'+id).show();		
		return false;
	});
});