var $j = jQuery;
$(document).ready(function()
{

	$j('#copyAddresButton').click(function()
	{
		$j('#shp_name').val($j('#name').val());
		$j('#shp_surname').val($j('#surname').val());
		$j('#shp_address_str').val($j('#address_str').val());
		$j('#shp_address_num').val($j('#address_num').val());
		$j('#shp_address_loc').val($j('#address_loc').val());
		$j('#shp_zipcode').val($j('#zipcode').val());
		$j('#shp_city').val($j('#city').val());
		$j('#shp_country').val($j('#country').val());
	});

	$j('#more').hover(function ()
	{
		$j(this).css({'color' : '#FF4E00', 'cursor' : 'pointer'})}, function (){$j(this).css({'color' : '#A3A3A3', 'cursor' : 'text'})
	});

	$j("#more").click(function ()
	{
		ob = document.getElementById("more");
		if(ob.innerHTML != 'mniej ^') ob.innerHTML = 'mniej ^';
        else ob.innerHTML = 'więcej..';  
      $j("#more_box").slideToggle();
	});
  
	$j('#more_main').hover(function (){$j(this).css({'color' : '#FF4E00', 'cursor' : 'pointer'})}, function (){$j(this).css({'color' : '#A3A3A3', 'cursor' : 'text'})} );

	$j("#more_main").click(function ()
	{
      ob = document.getElementById("more_main");
      if(ob.innerHTML != 'mniej ^') ob.innerHTML = 'mniej ^';
        else ob.innerHTML = 'więcej..';  
      $j("#more__main_box").slideToggle();
	});

});


