jQuery(document).ready(function($){
	
	//Enable external links
	$('a[rel~=external]').attr('target','_blank');
	
	//Setup form field with default value
	function setFieldValue(id,value){
		$('#'+id).val(value).focus(function(){
			if( $(this).val() == value)
				$(this).val('');
		}).blur(function(){
			if( $(this).val() == '')
				$(this).val(value);
		});
	}
	
	//Add table stripes
	$('table.styled tbody tr:nth-child(even)').css('backgroundColor','#EEE');
	//Fix IE
	if( $.browser.msie && parseFloat($.browser.version) < 9.0 ){
		$('#sidebar-menu li:last').css('border','none');
	}
	
});
