$(document).ready(function(){

	
$('#remove').focus(function() {
    $('#remove').hide();
    $('#tspassword').show().focus();
});
$('#tspassword').blur(function() {
    if ($('#tspassword').val() == '') {
        $('#remove, #tspassword').toggle();
    }
});
	
	//Accordion
		$( "#accordion" ).accordion({
			active: false,
			collapsible: true,
			icons: false
		});
	
	//Image Preview
	imagePreview();
				
	// Tabs
	$('#tabs').tabs({ selected: 0});	
	
	$('.email-text-tab').click(function() { 
    	$('#tabs').tabs('select', 1); 
    return false;
	});
	
	
	
	// Colorbox
	$("a[rel='footergrabs'],a[rel='contentgrabs'],a[rel='featuregrabs'],a[rel='productgrabs'],a[rel='shiftswapgrabs'],a[rel='tacollabgrabs']").colorbox();
	
	var currentYear = (new Date).getFullYear();	
	$("span.currentYear").text( (new Date).getFullYear() );
  
  $("input.clearinput").clearInput();
		
		$("#showcase").awShowcase(
		{
		content_width:			941,
		content_height:			340,
		hundred_percent:		false,
		auto:					true,
		interval:				8000,
		continuous:				true,
		loading:				true,
		arrows:					false,
		buttons:				true,
		btn_numbers:			false,
		keybord_keys:			true,
		mousetrace:				false,
		pauseonover:			true,
		transition:				'fade', /* hslide/vslide/fade */
		transition_delay:		0,
		transition_speed:		400,
		show_caption:			'onload', /* onload/onhover/show */
		thumbnails:				false,
		thumbnails_position:	'outside-last', /* outside-last/outside-first/inside-last/inside-first */
		thumbnails_direction:	'vertical', /* vertical/horizontal */
		thumbnails_slidex:		1, /* 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc. */
		dynamic_height:			false,
		speed_change:			true,
		viewline:				false
	});

  //Set opacity on each span to 0%
  $(".rollover").css({'opacity':'0'});
  
  // Rollover for toolbar download button
  $('a.jqfade').hover(
    function() {
      $(this).find('.rollover').stop().fadeTo(150, 1);
    },
    function() {
      $(this).find('.rollover').stop().fadeTo(600, 0);
    }
  )
  
});

