$(document).ready(function() {
	$(window).scroll(function() {
		if ($(this).width() > 991) {
			if ($(this).scrollTop() > 35) {
				$('.header').stop();
				$('.header-brand img').stop();

				$('.header').animate({
					opacity: 0.9,
					height: "70px"
				}, 300);
				$('.header-brand img').animate({
					width: "100px"
				}, 300);
			}
			else if ($(this).scrollTop() <= 35) {
				$('.header').stop();
				$('.header-brand img').stop();

				$('.header').animate({
					opacity: 1,
					height: "100px"
				}, 300);
				$('.header-brand img').animate({
					width: "200px"
				}, 300);
			}
		}
	});

	$('.popover-icon').click(function(e) {
		e.preventDefault();
	});
	
	$('.brands').click(function() {
		var brandID = $(this).attr('id');
		$("#m_" + brandID).toggle('fast');
	});
	
	$('.models').click(function() {
		var modelID = $(this).attr('id');
		$("#v_" + modelID).toggle('fast');
	});

	$('.scrollToTop').click(function(e) {
		e.preventDefault();
		var body = $("html, body");
		body.stop().animate({scrollTop:0}, 1000, 'swing');
	});
	
	$('.panel-heading').click(function() {
		if ($(this).hasClass('collapsed')) {
			$(this).find('.arrow').removeClass('fa-arrow-circle-down').addClass('fa-arrow-circle-up');
		}
		else {
			$(this).find('.arrow').removeClass('fa-arrow-circle-up').addClass('fa-arrow-circle-down');
		}
	});
});