$(function(){
 
				// Hook up the print link.
				$( ".print a" )
					.attr( "href", "javascript:void( 0 )" )
					.click(
						function(){
							$( "#forPrint" ).html($(this).parent().parent().html());
							// Print the DIV.
							$( "#forPrint" ).find('.print').remove();
							$( "#forPrint" ).print();
 
							// Cancel click event.
							return( false );
						}
						);
				$( "#printArticle" )
					.attr( "href", "javascript:void( 0 )" )
					.click(
						function(){
							//alert($(this).parent().parent().parent().html());
							$( "#articlePrint" ).html($(this).parent().parent().parent().html());
							// Print the DIV.
							$( "#articlePrint" ).find('#arcticleNavigation').remove();
							$( "#articlePrint" ).print();
 
							// Cancel click event.
							return( false );
						}
						);
 
			}
);

