/* var countdownSettings = {
	targetDate: {
	'day': 28,
	'month': 4,
	'year': 2011,
	'hour': 18,
	'min': 0,
	'sec': 0
	}
}; */

$(document).ready(function() {

	var $accordions = $('#ticket-center .accordion');
/*	var customSchedule$ = $('#custom-schedule');

	if (customSchedule$.length > 0) {
		customSchedule$.find('a.game-details').live('click', function(event) {
			event.preventDefault();
			customSchedule$.find('div.game-info.active').removeClass('active').toggle();
			$(this).parent().find('div.game-info').addClass('active').toggle();
			$(this).parent().find('a.close').click(function(event) {
				event.preventDefault();
				customSchedule$.find('div.game-info.active').removeClass('active').toggle();
			});
		});
	}
*/

	if($accordions.length > 0){
	$.getScript(nflcsAssetPath + 'nfl-assets/js/jquery.ui.core.min.js', function(){
	  $.getScript(nflcsAssetPath + 'nfl-assets/js/jquery.ui.widget.min.js', function(){
		$.getScript(nflcsAssetPath + 'assets/js/jquery.ui.accordion.min.js', function(){
		  $accordions.accordion({
			"autoHeight": true,
			"active": 0
		  });
		});
	  });
	})
	}
});

$('#hp-featured-photos').ready(function() {
	$('#hp-featured-photos .bd li').each(function() {
	if ($(this).find('img').attr('src') != null) {
			var theSrc = $(this).find('img').attr('src').replace('thumb_130_87','medium_540_360');
			$(this).find('img').attr('src',theSrc);
		}
	});
});

