/**
 * @author The One
 */

$(document).ready(function()
{
	$('.print a').click(function(){
		window.print();
		return false;
	})
	
	$('.get-block-code a').click(function(){
		$(this).next().toggle();
		return false;
	})
	
});
