$(document).ready(function(){

    $(".print-menu").click(function(){
        $('.print').jqprint({operaSupport: true})
    })

});

function showMenuItem(n){

	var num = 5;
	for(i=1;i<=num;i++){
		if(i==n){
			document.getElementById('menu'+i).style.display = 'block';
		}else{
			document.getElementById('menu'+i).style.display = 'none';
		}
	}

}
