$( document ).ready( function (){
	$( '.tool-active-btn' ).bind( 'click', function(){
		$( this ).parent().toggleClass( 'tool-active' );
		$( this ).blur();
		return false;													
	} );
	$( document.body ).bind( 'click', function(){
		if( $( '.tool-active-btn' ).parent().hasClass( 'tool-active' ) ){
			$( '.tool-active-btn' ).trigger( 'click' );				
		}
   	} );
	$( '.tool-pr a' ).bind( 'click', function(){
		var href = $( this ).attr( 'href' );
		window.open( href, 'print-window', 'location=0, status=0, scrollbars=1, width=700, height=800' );	
		return false;
	} );
});
