$(document).ready(function(){

// Fancy Box for Enlarging Images
	$(".img-preview").fancybox();

// Facebook Feed on Drivers Page
	$.jGFeed('http://feeds.feedburner.com/TmcTransportationsFacebookWall',
	function(feeds){
	  // Check for errors
	  if(!feeds){
	    // there was an error
	    return false;
	  }
	  // do whatever you want with feeds here
	  for(var i=0; i< 2 ; i++){
	    var entry = feeds.entries[i];
	    // Entry title
	    $('#facebook-feed .comments').append('<p><a href="' + entry.link + '">' + entry.title + '</a></p>');
	  }
	}, 10);

});

