jQuery(document).ready(function($){
//rollover
$( ".box" ).hover(
function() {
$( this ).addClass( "box-over" );
}, function() {
$( this ).removeClass( "box-over" );
});
});
jQuery(document).ready(function($){
//rollover
$( ".box" ).hover(
function() {
$( this ).addClass( "box-over" );
}, function() {
$( this ).removeClass( "box-over" );
});
});