$(document).ready(function() {
	$('#readmore1').toggle(
		function() {
			$('#openclosediv1').animate({
				marginLeft:"-425px"
			},250)
			$('#contentdiv1').animate({
				width: "0px"
			},250, function(){
				$('#readmore1').attr("src", 'http://tycjan.tourshop.pl/images/open-info.png')
			});
		},
		function() {
			$('#openclosediv1').animate({
				marginLeft:"0px"
			},250)
			$('#contentdiv1').animate({
				width: "575px"
			},250, function(){
				$('#readmore1').attr("src", 'http://tycjan.tourshop.pl/images/close-info.png')
			});
		}
	);
	$('#readmore2').toggle(
		function() {
			$('#openclosediv2').animate({
				marginLeft:"0px"
			},250)
			$('#contentdiv2').animate({
				width: "275px"
			},250, function(){
				$('#readmore2').attr("src", 'http://tycjan.tourshop.pl/images/close-offers.png')
			});
		},
		function() {
			$('#openclosediv2').animate({
				marginLeft:"275px"
			},250)
			$('#contentdiv2').animate({
				width: "0px"
			},250, function(){
				$('#readmore2').attr("src", 'http://tycjan.tourshop.pl/images/open-offers.png')
			});
		}
	);
});


