	//yonis jquery stuff for PROJECT VORTEX (c) 2009-10
	//yoni@social-ink.net
	
	var $j = jQuery.noConflict(); //declare this cause of problems with WP
	
	$j(function(){
		
			// jquery scroll for divs with overflowing content 	
				$j(".scroll-pane").jScrollPane();
		
			// jquery scroll for divs with overflowing content  horizontal edition
				$j(".scroll-pane-hori").jScrollHorizontalPane();
		
			
			//frontpage dimming
				$j(".attachment-thumbnail").fadeTo("fast", 0.6);
				
			//mouseover dimming
			
			/*	$j(".carousel-controls-inner img").hover(function() {
					$j(this).fadeTo("fast", 1);	
				}, function() {
					$j(this).fadeTo("fast", .6);
			}); */
			
			// menubar flyouts
				$j("#navmenu li").click(function() {
					$j(this).parent().children("li").children("ul").removeClass("opened");
					$j(this).children("ul").addClass("opened");
					$j(this).children("ul").css('display','block');
					$j(this).parent().children("li").children("ul").not('.opened').hide("fast");
					
			
				});			
		
});
