	 
$(function() {

	$('h2').each(function() {
		if ($(this).text().indexOf('Twitter') > -1) {

		} else {
			Cufon.replace(this);
		}
	});
		 
	$('.search input').val('');
	$('.search input').focus(function(){
		$(this).prev('label').hide();
	}).blur(function(){
			if ($(this).val() == '' ) $(this).prev('label').show();
	});
	
	
	$('.user_login input').each(function(){
		if ($(this).val() != '' ) $(this).prev('label').hide();
	});
	
	$('.user_login label').click(function(){
		$(this).hide();
		$(this).next('input').focus();
	});
	$('.search label').click(function(){
		$(this).hide();
		$(this).next('input').focus();
	});
		
	$('.user_login input').focus(function(){
		$(this).prev('label').hide();
	}).blur(function(){
			if ($(this).val() == '' ) $(this).prev('label').show();
	});
	
	if ($.browser.msie) {
		$('#menu a').each(function(){
			$(this).append('<div id="menu_i"></div>');
		});
	};
	
	/*$('#archive-dropdown-go-btn').click(function() {
		window.location = $('#archive-dropdown').val();
	});*/


});



