$(function() {
	// search inbox
	// add value from placeholder
	// hide on focus
	
	$('body').addClass('hasJS');
	$('.teaser').addClass('grid_5 omega').before('<ul class="preTease grid_3 alpha"></ul>');
	$('.teaser li').each(function(i) {
		var text = $(this).find('h1').text();
		var href = $(this).find('a').attr('href');
		$(this).attr('id','tab_'+i);
		$('.preTease').append('<li><a href="'+href+'" rel="tab_'+i+'">'+text+'</a></li>');
	});
	$('.teaser li:gt(0)').hide();
	$('.preTease li:eq(0)').addClass('current');
	
	$('.preTease a').bind('mouseover focus',function() {
		$('.preTease li').removeClass('current');
		$(this).parent('li').addClass('current');
		var identifier = $(this).attr('rel');
		$('.teaser li:visible').hide();
		$('.teaser li#'+identifier).show();
	});
	
	$('.courses').hide();
	$('.cycle').cycle({speed: 'slow'});
});
