$(document).ready(function(){
	
	$('#heading').html( '<img src="'+_dir('images/screenmachine-logo.png')+'" />' );
	
	$('#search').focus( function(){
		if ( $(this).attr('value') == "Search" ) {
			$(this).attr('value','');
		};
	} ).blur( function(){
		if ( $(this).attr('value') == "" ) {
			$(this).attr('value','Search');
		};
	} );
	
	$('.archive .recent .link').mouseenter(function(){
		$(this).parent().stop();
		$('#recently').stop();
		$(this).parent().animate( {'width':'555px'}, 'fast' );
	});
	$('.archive .recent .link').mouseleave(function(){
		$(this).parent().stop();
		$('#recently').stop();
		$(this).parent().animate( {'width':'180px'}, 'fast' );
	});
	
	$('#todo .todo-content img').css( {'width':'200px','height':'200px','display':'none'} );
	
	
});


function _dir( url ){
	return dir+"/"+url;
}
