﻿//filmstrip hover effect
$('.shoestripbox').hover(  
function() {  
$(this).addClass('shoestripboxhover');  
},  
function() {  
$(this).removeClass('shoestripboxhover');  
 }  
);