$(function(){
	$('.traveler_login .input input').each(function(){
		if (!this.value) {
			$(this).addClass('unclick');
		}
	});
	$('.traveler_login .input input').focus(function(){
		$(this).removeClass('unclick');
	}).blur(function(){
		if(!this.value) {
			$(this).addClass('unclick');
		}
	});
	$('a.delete').bind('click', function(e){
		if (!confirm('Are you sure you want to delete this request?')) {
			e.preventDefault();
		}
	});
	
	$('table#requests a.offers').click(function(){
		if ($(this).parents('tr').next(':visible').size() == 0) {
			$(this).parents('tr').next().show();
			$(this).html('<img alt="" src="/img/comment_delete.png"/>');
		} else {
			$(this).parents('tr').next().hide();
			$(this).html('<img alt="" src="/img/comment_add.png"/>');
		}
	});
});