/*
 * Print Preview v0.0.1
 * http://whynotonline.com/
 *
 * Copyright (c) 2009 Nivanka Fonseka
 * BSD licenses.
 * http://open.whynotonline.com/license/
 * 
 * This plugin is a handy tool which you can use to view print previews of your website;s content
 * Feel free to use this on your websites, but please leave this message in the fies
 */

jQuery.fn.printPreview = function() {
	
	$current = jQuery(this);
	$current.bind('click', function(){
		$window = window.open("","Print Preview");
		
		$html = '<html>';
		$html+= '<head>';
		$html+= '<style type="text/css">';
		$html+= '*{ font-family:arial;}';
		$html+= '</style>';
		$html+= '</head>';
		$html+= '<body>';
		$html+= jQuery('#' + $current.attr('print')).html();
		$html+= '</body>';
		$html+= '</html>';
		
		$window.document.write($html);
		}
	);
};