// Requires JQuery

// on dom ready
$(function() {
	
	// logout
	$('a#logout').click(function(){
	
		var answer = confirm ("Are you sure you want to logout?")
		if (answer){
		
	}
	else{
		return false;
	}

	
	});
	
	
	// form fields
	$('form input.text, form textarea').css({opacity: .5});
	
	$('form input.text, form textarea').focus(function(){
		$(this).css({opacity: 1});
	});
	
	$('form input.text, form textarea').blur(function(){
		$('form input.text, form textarea').css({opacity: .5});
	});
	
	
	// print
	$('a#print').click(function(){
		window.print();
		return false;
	});

});