/**
 * BS2 Javascript stuff.
 * @author NOSE
 * 
 * @version 1.0.0 initial version
 *
 */
var BS2 = {

	/**
	 * Initialize.
	 */
	initialize : function(){
		// init all
		BS2.initPrintLinks();	
	},
	
	
	/**
	* Initializes the print stuff.
	*/
	initPrintLinks: function() {
		jQuery(".printLink").click(function(){window.print();});
	}
}
jQuery(document).ready(function(){
	BS2.initialize();
});



