$().ready(function(){

	$(".scrollingImage a img").each(function() {
		($(this).height() > 114) 
		? $(this).css('height', '114px')
		: $(this).css({'top': '50%', 'margin-top': '-'+($(this).height()/2)+'px'});
	});

	$("#scrollRightTechnology").smoothDivScroll({autoScroll: "always", autoScrollDirection: "endlessloop", pauseAutoScroll: "mouseover"});

	$("#scrollRightBrands").smoothDivScroll({autoScroll: "always", autoScrollDirection: "endlessloop", pauseAutoScroll: "mouseover"});

	$("#scrollerLeftTechnology").click(function() {
		$('#scrollRightViewport').animate({'margin-top': '6px'}, 100 );
		$(this).addClass('scrollSelect');
		$('#scrollerLeftBrands').removeClass('scrollSelect');
	});

	$("#scrollerLeftBrands").click(function() {
		$('#scrollRightViewport').animate({'margin-top': '-114px'}, 100 );
		$(this).addClass('scrollSelect');
		$('#scrollerLeftTechnology').removeClass('scrollSelect');
	});

	$('.scrollButton').hover(
		function() { $(this).addClass('scrollHover'); },
		function() { $('.scrollHover').each(function() { $(this).removeClass('scrollHover'); }); });

	$('.scrollingImage').hover(
		function() { $(this).addClass('scrollImgHover'); },
		function() { $('.scrollImgHover').each(function() { $(this).removeClass('scrollImgHover'); }); });

});
