$(document).ready(function() {

$('#advancedSearch').hide();
$('#advancedSearchHead').hide();

	$('#toggleAdv').click(function() {
		var $this = $(this);
	
		if( $('#advancedSearch').is(':visible') ) {
				$('#advancedSearch').hide();
				$('#advancedSearchHead').hide();
				$this.removeClass('active');
				$this.html('Więcej opcji');
			}
		else {
				$('#advancedSearch').show();
				$('#advancedSearchHead').show();
				$this.addClass('active');
				$this.html('Ukryj opcje');
			}
		
		return false;
	});

	$("table#offerList tbody tr").hover(
		function() { $(this).addClass("hovered"); },
		function() { $(this).removeClass("hovered"); }		
	);
	
	$("table#offerList tbody tr").click(function() { 
		var url = $(this).find('a').attr('href');
		window.location = url;
	});

});
