function fixheight()
{
	if($("#singlecontent_content"))
	{
		var outerh=$("#singlecontent").height();
		var innerh=$("#singlecontent").height();	
		var value=(outerh-379)%17;
		$("#singlecontent_content").css( {"height": innerh+(17-value)-1+"px"} );
	}
	
	if($("#leftcontent_content"))
	{
		var outerh=$("#leftcontent").height();
		var innerh=$("#leftcontent").height();	
		var value=(outerh-379)%17;
		$("#leftcontent_content").css( {"height": innerh+(17-value)-1+"px"} );
	}	

}

$(window).load(function() { 
//$(document).ready(function(){


//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
//~ rozwijane menu - dla IE*
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 


	$("#buttons li").hover(function(){
		$(this).addClass("over");
	},function(){
		$(this).removeClass("over");
	});


//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
//~ sprezyny
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

	fixheight();

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
//~ rozwijany content
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 


	 $(".readmore").click(function () {	 	
	 	
	 	
	 		
	 		
		  $(this).fadeOut("slow", function(){

	 	 	
		  	
		  	$("#singlecontent_content").css({"height": "auto"});
		  	
		  	//~ var targetOffset = $(this).next(".more").offset().top;
		  	
		  	$(this).next(".more").slideDown("normal",
		  
		  
				function () 
				{
					var outerh=$("#singlecontent").height();
					var innerh=$("#singlecontent").height();	
					var value=(outerh-379)%17;
					$("#singlecontent_content").css( {"height": innerh+(17-value)-1+"px"} );
					
					
					//~ $('html,body').animate({scrollTop: targetOffset}, 1000);
					
				}
		  
		  
		  );} );  
	});
	



});

