/**
 * @author jeremy.manoto
 */


	// JQuery
	$(document).ready(function() {

		/**
		 * Collapse Left Column if no inner content exists.
		 */
		if ($(".left-col").children().length == 0) {
			$(".center-col").width(700).css("padding-left", "10px");
		}
		
		if ($(".footer ul").length == 1) {
			//$("body").attr("id", "landing");
		}

        /** Search results - alternating styles **/
        $(".search-hit:even").css("background-color", "#EEE");
		
	})
