jQuery.fn.fauxdal = function(){
	$(this).click(function(){
		$('.fauxdal').fadeOut();
    	$($(this).attr("href")).fadeIn();
    	$(".close", $(this).attr("href")).click(function(){
			$(this).parent().fadeOut();
		});
		
		return false;
	});
};

jQuery.fn.fauxdal_detail = function()
{
	$(this).click(function(){
		$('.fauxdal').fadeOut();
    	$($(this).attr("href")).fadeIn();
    	$(".close", $(this).attr("href")).live('click', function(){
			$(this).parent().fadeOut();
		});
		var title = $('.info td h2').html();
		var product = $(this).attr("rel");
		var pid = window.location.search.substring(window.location.search.indexOf('=') + 1, window.location.search.indexOf('&'));
		jQuery.get('/templates/ajax/view.bsrtable_detail.php', { id: pid, name: title, product: product }, function(data){
			$('#listings-detail').html(data);
		});
		
		return false;
	});
}
