﻿$(document).ready(function() {
    
	// Determine width of homepage promos
	var viewport = $(window).width();
	if (viewport > 1099){
		$('#outerWrap').addClass('wideScreen');
	}
	
	//Remove search input text on click
    $('#search .input').one("focus", function () {
        $(this).val("");
    });
	
	//Homepage Promo Panels
	$('.promoPanels .item h2').click(function() {
	  $('.promoPanels .promoContent').slideToggle(500);
	  $('.promoPanels .item h2').toggleClass('open');
    });
	$('.promoPanels .item h2 a').click(function() {
	  $('.promoPanels .promoContent').slideToggle(500);
	  $('.promoPanels .item h2').toggleClass('open');
	  return false;
    });
});


