$(function(){	
	$("a[href$=.mp3]").jmp3({
		showfilename: "false",
		backcolor: "000000",
		forecolor: "00ff00",
		width: 200,
		showdownload: "false",
		autoplay: "true"
	});

	// SHOW THE 'FIRST TIME' PANEL FOR FIRST TIME USERS, HIDE IF YOU'VE BEEN HERE BEFORE
	var first_time = $.cookie('first_time');
	if (first_time == 1) {
		$('#first_time,#hide_this').hide();
	}

	// TOGGLE THE 'FIRST TIME' PANEL
	$('#bar .right li.show a').click(function(){
		if ($('#first_time').is(':hidden')) {
			$('#bar li.show a').css('backgroundPosition','bottom right');
		} else {
			$('#bar li.show a').css('backgroundPosition','top right');
		}
	
		$('#first_time').slideToggle();
	});

	// CLICK THE 'HIDE THIS' LINK, SET 'HIDE' COOKIE
	$('#hide_this').click(function(){
		if (first_time !== 1) {
			var date = new Date();
			date.setTime(date.getTime() + (365 * 24 * 60 * 60 * 1000));
			$.cookie('first_time', '1', { path: '/', expires: date });
		}

		$('#first_time').slideToggle();
	});
	
	// SHOW LAST TWEET
	$.getJSON('http://twitter.com/statuses/user_timeline/hollywoodpalms.json?count=1&callback=?', function(data){
		$(data).each(function(){
			$('#tweets').prepend(this.text);
		});
	});

	// ADD 'GROUP' CLASS TO MAIN NAV
	$('ul.main_nav').addClass('group');


	/* iPhone & iPod Touch Video */
	var ua = navigator.userAgent;
	if (ua.indexOf("iPhone") > 0) {
		var field = $('#first_time td:eq(0)');
		var new_content = "<a href=\"/hollypalms/clientuploads/video/wgntv-vid231.m4v\"><img src=\"/clientuploads/video/tour_badge_iphone.jpg\" alt=\"View the video\" /></a>";
		$('#myAlternativeContent').remove();
		$(field).html(new_content);
	}
});