$(document).ready(function () {
	
	$("#tech-select").prepend('<div class="arrow" id="model-select-left"></div>');
	$("#tech-select").prepend('<div class="arrow" id="model-select-right"></div>');
	
	$("#tech-select div#scroll").css("overflow", "hidden");
	$("div.tech-box div p.promo-copy").css("min-height", "10em");
	
	$("#model-select-right").click(function() {
		$("#scroll").animate({
			scrollLeft: "+=152"
		}, "fast");
	});
	$("#model-select-left").click(function() {
		$("#scroll").animate({
			scrollLeft: "-=152"
		}, "fast");
	});
	

	$('.bd-technology-thinkblue .tech-box .more a').unbind('click');
});

