jQuery(document).ready(function(){

intervalCarousel = setInterval(anim_carousel,4000);

function anim_carousel() {
	width_list = (jQuery('#header .block_carousel ul li').size())*(jQuery('#header .block_carousel ul li').width());
	jQuery('#header .block_carousel ul').css('width',width_list);
	
	jQuery('#header .block_carousel ul').animate({
		marginLeft: '-745'
	},2000,function(){
	
		jQuery('#header .block_carousel ul').css('marginLeft','0');
		jQuery('#header .block_carousel ul').find('li:first-child').insertAfter('#header .block_carousel li:last-child');
	});
}

});;
jQuery(document).ready(function(){
   jQuery('.print_page').click(function(){
       window.print();return false;
   });
});
;

