jQuery(document).ready(function($){
	$('#content .article:last').addClass('last-article');
	$('#navigation > ul > li:first').addClass('homelink');;
	
	$('.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') })
		}
	});
	
	$('.ask-form form').submit(function() {
		valid = true;
		errors = '';
		
		$(this).find('.required').each(function() {
			if (($(this).val() == $(this).attr('title')) || ($(this).val() == '')) {
				valid = false;
				errors += 'Please fill the "' + $(this).attr('title') + '" field\n';
			}
		});
		
		if (!valid) {
			alert(errors);
		}
		
		return valid;
	});
	
	//$('#sidebar .widget:not(.hide-icon)').prepend('<div class="icon">&nbsp;</div>');
});
