jQuery(function($) {
	$('.dropdown').sSelect();
	
	$('.ginput_container .medium').each(function() {
		$(this).attr('title', $(this).val());
	});
	
	$('.blink, .ginput_container .medium').focus(function(){
		if( $(this).attr('value') == $(this).attr('title') ) {
			$(this).attr({ 'value': '' });
		}
	}).blur(function(){
		if( $(this).attr('value') == '' ) {
			$(this).attr({ 'value': $(this).attr('title') })
		}
	});
	
});

Cufon.replace('.middle h3, .bottom h3, h2, .navigation a');
