     jQuery.noConflict();

     // Put all your code in your document ready area

     jQuery(document).ready(function($){

     // Do jQuery stuff using $ this where the functions need to go   


$(document).ready(function() {
	$('ul#tools').prepend('<li class="print"><a href="#print">Print Page</a></li>');
	$('ul#tools li.print a').click(function() {
		window.print();
		return false;
	});
});


});