jQuery(
	function( $ ){
		
		$(".article").each(
			function(i){
				$(this).bind('mouseover', null, 
					function(){
						$(this).css({backgroundColor:"#eee"});
					}
				);
				
				$(this).bind('mouseout', null, 
					function(){
						$(this).css({backgroundColor:"#fff"});
					}
				);
				
				/*$(this).bind('click', null, 
					function(){
						var id = this.getAttribute("id").split("-")[1];
						window.location.assign("?p="+id);
					}
				);*/
				
			}
		);
		
		$(".menuitem").each(
			function(i){
				$(this).bind('mouseover', null, 
					function(){
						$(this).css({backgroundColor:"#eee"});
					}
				);
				
				$(this).bind('mouseout', null, 
					function(){
						$(this).css({backgroundColor:"#fff"});
					}
				);
			}
		);
		
		
	}
	
);
