$(document).ready(function() {


	$('#readmore').toggle(
   function()
   {
   		$('#openclosediv').animate({
			marginLeft:"-450px"
		},250)
      $('#contentdiv').animate({
    width: "0px"
}, 250, function(){
		$('#readmore').attr("src", 'http://poddebem.tourshop.pl/images/open-info.png')
	});
   },
   function()
   {
		$('#openclosediv').animate({
			marginLeft:"-25px"
		},250)
      $('#contentdiv').animate({
    width: "500px"
      }, 250, function(){
		$('#readmore').attr("src", 'http://poddebem.tourshop.pl/images/close-info.png')
	});
   });
});


