﻿var startDate = new Date(2012, 2, 28);

function termsStepsContent(ind){
	$('.terms-steps .texts div').hide();
	$('.terms-steps .texts div').eq(ind).fadeIn();
}

$(window).load(function() { 
	$('.header .login-fld').each(function() {
		var default_value = this.value;
		$(this).css('color', '#bfbfbf');
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
				$(this).css('color', '#666');
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				$(this).css('color', '#bfbfbf');
				this.value = default_value;
			}
		});
	});
	
	
	$('div.defaultCountdown').countdown({until: startDate});
	
	$('div.header .banner a.roll-div').cycle({fx:'fade', speed: 300, timeout: 3500, pause: 1});
	$('div.program-tile .content-inner').cycle({fx:'fade', speed: 300, timeout: 5000, pause: 1});
	$('div.speakers-tile .content').cycle({fx:'fade', speed: 300, timeout: 5000, pause: 1});
	$('div.sponsors-tile .content').cycle({fx:'fade', speed: 300, timeout: 4000, pause: 1});
});
