$( document ).ready( function(){
	$('.blink')
		.focus(function(){
			if( $(this).attr('value') == $(this).attr('title') ) {
				$(this).attr({ 'value': '' });
			}
		})
		.blur(function(){
			if( $(this).attr('value') == '' ) {
				$(this).attr({ 'value': $(this).attr('title') })
			}
		});
		
	$('.tabs').each(function(){
		var i=0;
		$(this).find('a').each(function(){
			this._index = i;
			i++;
		})
	});
	
	$('.tabs a').click(function(){
		var parent = $(this).parent().parent().parent().parent();
		var index = this._index;
		
		parent.find('ul li a').removeClass('active');
		parent.find('.tab-content').hide();
		
		parent.find('.tab-content:eq(' + index + ')').show();
		$(this).addClass('active');
		
		
		return false;
	})
	
});

