$(function() {
	
	$('.req_info a').click(function() {
		$('.req_submited_info').hide();
		$('.req_content').show();
		$('.req_form').slideDown();
		$(this).hide();
		return false;
	});
	
	$('.req_form .but_holder input:last').click(function() {
		
		$('.req_form').slideUp(function() {
			$('.req_info a').show();
		});
	});
	
	$('.req_form .but_holder input:first').click(function() {
		$('.req_form textarea').val('');

		$('.req_submited_info').show();
		$('.req_content').hide();
		setTimeout(function() {
			$('.req_form').slideUp(function() {
				$('.req_info a').show();
			});
		}, 5000);
	});
	
	
	// Showing full content of the Long description field
	$('.view-full-description').live('click', function(){
		var item = $(this).parent();
		item.html(item.parent().find('[name=full_content]').val());
		item.hide().slideDown();
		return false;
	});
	
});
