// PRINT BUTTON +++++++++++++++++++++++++++++++++++++//
function openWin(){
	window.open(window.location.href,"printWindow");
}

// IE flicker off
try{

	document.execCommand("BackgroundImageCache", false, true);

}catch(e){}

// blank.js
jQuery(document).ready(function($){

	// blank
	$(".blank").click(function(i){
		this.src = window.open(this.href,'_blank');return false;
	});
	
	$("#sidebar01 .accordion ul").hide();
	$("#sidebar01 .on ul").show();
	$("#sidebar01 .accordion .button").click(
		function(){
			$(this).parent().parent("li").toggleClass("on").children("ul").slideToggle(150);
		}
	);
	
	$("#sidebar01 .ranking .rank_box01").load("/ranking.html .rank_box01");	

	$("a.wordlist").click(
		function(){
			this.src = window.open(this.href,'_blank',' status=no, toolbar=no, location=no, menubar=no, scrollbars=yes, resizable=yes, height=600, width=730');
			return false;
		}
	);
	
});


