$(document).ready(function(){
	
	// Navigation Drop-down Menus

    $('#header .parent a').click(function(){
        $(this)
            .siblings('ul')
            .slideToggle('fast');

        $(this)
            .parent('li')
            .siblings('li')
            .children('ul')
            .slideUp('fast');

    });

	// Email newsletter signup label fade
	$('#utukjr-utukjr').keypress(function(){
		$('#subForm label').fadeOut('fast');
	});
	$('#utukjr-utukjr').focusout(function(){
		var value = $('#utukjr-utukjr').val();
		if (!value) {
			$('#subForm label').fadeIn('fast');
		}
	});
	
	// Twitter
	$('#aside .side.twitter .content').social({
		network:'twitter',
		user:'iMovers',
		count:1,
		loadingText:'<p>Loading transmission &hellip;</p>',
		twitter:{output:'<span class="tweet">{text}</span> <span class="time">Posted <a href="{tweet_url}">{time}</a></span>'}
	});
	
	// Audio player
	$('.audio.player .playlist .go').click(function() {
		$('.audio.player .playlist .go').removeClass('playing');
		$(this).addClass('playing');
		$('#audio_player').get()[0].sendEvent('LOAD', $(this).attr('href'));
		$('#audio_player').get()[0].sendEvent('PLAY', $(this).attr('href'));
		return false;
	});
	
	// Append post time to author line of news articles
	// var postTime = $('.news .listing .header .date').attr('rel');
	// $('.news .listing .header .author').append(' at ' + postTime);
	
	// Set up accordion tabs for press page
	$(".accordion").tabs(".accordion div.pane", {tabs: 'h2', effect: 'slide', initialIndex: null});
	$(".accordion .pane .close").click(function(){
		$(this).parent().parent().slideToggle('fast');
		return false;
	});
	
	// Render mini mover package on top of event page
	$(".events .section.events .header").append("<div class=\"minimover\"><p><a href=\"http://www.cidentertainment.com/imaginationmovers\">Mini Movers Packages and Upgrades Available</a>!</p></div>");
	
	// Shop thumbnails
	$('.shop .figure li img').click(function(){
		var defaultimg = $(this).attr('rel');
		var cappers = $(this).parent().find('.caption').text();
		$(this).parent().parent().parent().find('.current').html('<img src="'+defaultimg+'" alt="" />');
		$(this).parent().parent().parent().find('.current').append('<div class="figcaption">'+cappers+'</div>');
	});
	
	$(".GC_orders .GC_orders h2").after("<p>Please note that merch orders placed through <a href=\"http://imaginationmovers.com/shop\">imaginationmovers.com/shop</a> will not be reflected in your order status here. Please contact <a href=\"mailto:&#x69;&#x6E;&#x66;&#x6F;&#x40;&#x69;&#x6D;&#x61;&#x67;&#x69;&#x6E;&#x61;&#x74;&#x69;&#x6F;&#x6E;&#x6D;&#x6F;&#x76;&#x65;&#x72;&#x73;&#x2E;&#x63;&#x6F;&#x6D;\">info@imaginationmovers.com</a> to request the status of orders placed through the /shop page.</p>");
});

