
$(document).ready(function (){

	$('.stripeUs').each(
	
		//Iterate and apply mouseover effects
		function (){
			//Apply rollover
			$(this).mouseover(
				function (){
					$(this).toggleClass('striped');
				}
			);
			
			//Apply rollout
			$(this).mouseout(
				function (){
					$(this).toggleClass('striped');
				}
			);
			
			
		}
	);
	
});
