$(document).ready(function() {  
	function imageresize() {
		if ($('body').width() > 1240){  
			$('#container').css({
                    'background' : 'url(/images/background-bullits.png) 0px 145px no-repeat', 
                    'padding' : '0px 120px 0px 120px'
            });
		} else {  
			$('#container').css({
                    'background-image' : 'none', 
                    'padding' : '0px'
            });
		}	  
	}	  
	imageresize();    
	 
	$(window).bind("resize", function(){//Adjusts image when browser resized  
		imageresize();  
	});  
});  

		$(document).ready(function() {
/*			$.featureList( $("#tabs li a"), $("#output li"), { start_item	:	0 } ); */
			
			$('#tabs li a').featureList({
				output	   : '#output li',
				start_item : 0
			});
		});