/**
 * @author adam
 */

$(document).ready(function() {
	
	var isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
	
	if(isIE6 == true) {
		$('#logos').hide();
	}
	
	$('select[name=select_team]').val("customer");
	
	$('select[name=select_team]').change(function() {
		var val = $(this).val();
		
		if(val !== "#") {
			if(val == "customer") {
				$('.pane, .scroll_me').css('height', '1300px');
			} else {
				$('.pane, .scroll_me').css('height', '800px');
			}

			$('.scroll_me').scrollTo($('#'+val), 400, {easing : "swing"});
		}
	});
	
	
});
