
$(document).ready(function ()
{
	
	$('.center_box_dane_zdjecia_full a, .center_box_dane_zdjecia_mini a').fancybox({
		'hideOnContentClick': true
	});
	
	
	$('#negotiate fieldset *').click(function ()
	{
		$(this).parents('fieldset').find('h3 input').attr('checked', true);
	});
	
	
	$('select#product_list_ordering').change(function ()
	{
		location.href = $(this).val();
	});
	
	$('#producers_for_list select').change(function ()
	{
		$(this).parents('form').submit();
	});
	
	
	$('.callback a').click(function()
	{
	    var win = window.open($(this).attr('href'), 'helper', 'width='+425+',height='+530+',resizable=0,scrollbars=no,menubar=no');
		return false;
	});
	
	if(!$('#s_firm').attr('checked')) 
	{
		$('#firm_form').hide();
	}
	else
	{
		$('#firm_form').show();
	}

	$('#s_firm').click ( function()
	{
		$('#firm_form').toggle();
	});
	
});





