$(document).ready(function(){
	
	$('.phone_roll').hover(
		function () {
			$(this).addClass('phone_roll_active');
		},
		function () {
			$(this).removeClass('phone_roll_active');
		}
	);

});
