(function($){
	//
	//	ALL THE JQUERY SCRIPTS HERE
	//
	
	$(document).ready(function(){
		// Add popup preview balloons to line listings on category pages
	    obj = $('.line_listing td a');
	    if( obj && obj !== undefined )
	    {
	    	obj.each(function() {
	            if( $(this) )
	            {
	                $(this).bt({
	                    contentSelector: "$('#' + $(this).attr('rel')).html()",
	        			fill: '#FFF',
	        			cornerRadius: 10,
	        			strokeWidth: 1,
	        			strokeStyle: '#999',
	        			positions:['top','bottom','right','left'],
	        			width: '360px',
	        			centerPointX:.6,
	        			centerPointY:.5,
	        			killTitle: true,
	        			shadow: true,
	        			shadowOffsetX: 2,
	        			shadowOffsetY: 2,
	        			shadowBlur: 3,
	        			shadowColor: "#000",
	        			shadowOverlap: false,
	                    closeWhenOthersOpen: true,
	        			noShadowOpts: {strokeStyle: '#000'},
	        			windowMargin: 0
	                });
	            }
	    	});
	    }
	});
		
	
	
})(jQuery);