/* Author: Travis Gertz
   Studio: Louder Than Ten
*/

$(document).ready(function(){
    // Target your .container, .wrapper, .post, etc.
    	
	//Responsive headlines
    $("h1").fitText(0.6);

    //Responsive Videos
    $(".video").fitVids();

	//Scroll to top
	$('a[href=#main]').click(function(){
        $('html, body').animate({scrollTop:240}, 'slow');
        return false;
    });


//Infinite Scroll
if(jQuery().infinitescroll) {
  $('div.archive').infinitescroll({
    navSelector  : "#next:last",            
    nextSelector : "#next:last",    
    itemSelector : ".archive div.month",
    loadingImg : "/img/layout/loading.gif",
    preload : true,
    bufferPx : 3000          
  });
}

//Validate Search Form
$("#search-form").validate({
    rules: {
      keywords: "required"  
    },
    messages: {
        keywords: ""
    }
});

});



