// JS Basics


// 
// PNG FIX FOR IE5.5 / 6
//

	$(document).ready(function(){
		$(document).pngFix();
	});



// 
// list link hover
//
$(document).ready(function(){

	$("li.page_item").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});
