
function slide(targ) {
	var slidecount=0;
	var itemlength=$('#slider_content div').length-1;
	var movepos=0;
	
	//var obj=eval(targ);
	$(targ).css({
		'width':'796px',
		'height':'112px',
		'overflow':'hidden'
		});
	var sc=$(targ).find('#slider_content');
	$(sc).css({
		'background-color':'#ff9900',
		'width':(itemlength+1)*262
		
		 });

	
	$('#slider_content div').css({
		'width':'262px',
		'overflow':'hidden',
		'float':'left'
		});
	
	
	
	//alert($(sc).width()+":"+itemlength);
	
	
	 $('.scroll_item #slide_right').mousedown(function(){
	 if (slidecount<(itemlength-2)){
			 slidecount+=1;
			 movepos=(262*(slidecount*-1));
		 }
		 $(sc).stop().animate({
			'margin-left': movepos}, 
			{duration:500});
		
	 	});
	
	 
	 
	 
		 $('.scroll_item #slide_left').mousedown(function(){
	 if (slidecount>0){
			 slidecount-=1;
			 movepos=(262*(slidecount*-1));
			// alert(slidecount+":"+itemlength);
		 }
		 $(sc).stop().animate({
			
			'margin-left': movepos}, 
			{duration:500});
		
	 	});
	
	 $('.additional_link').mousedown(function(){
	$('#section_additional').animate({
height: 'toggle', opacity: 'toggle'
}, "500");
	})
	
	//alert(targ);
}
