/**
 * @author Xun Exnano
 * @version 1
 * 
 * Little System JS
 */

var $j=jQuery.noConflict();

$j(document).ready(function() {
	
	$j(".page_item").children("ul").toggle();
	$j(".page_item").hover(  
		function(){
			$j(this).children("ul").fadeIn(400);
		},  
		function(){ 
			$j(this).children("ul").stop(true,true).toggle();  
		} 

	);
		
	$j('#img-frame').slideShow({ interval: 3.5 });

});
