jQuery(document).ready(function() {

jQuery('.mod_picture').mouseover(function() {
jQuery(this).children('.mod_top').css('background-position', 'right');
jQuery(this).children('.mod_center').css('background-position', 'right');
jQuery(this).children('.mod_bottom').css('background-position', 'right');
var tmp = jQuery(this).children('.mod_center');
jQuery(tmp).children('.mod_wrap').children('.mod_title').css('color', '#202020');
jQuery(tmp).children('.mod_wrap').children('.mod_table').children('tbody').children('tr').children('td').children('a').children('img').css('border-color', '#f5f5f5');
});
jQuery('.mod_picture').mouseout(function() {
jQuery(this).children('.mod_top').css('background-position', 'left');
jQuery(this).children('.mod_center').css('background-position', 'left');
jQuery(this).children('.mod_bottom').css('background-position', 'left');
var tmp = jQuery(this).children('.mod_center');
jQuery(tmp).children('.mod_wrap').children('.mod_title').css('color', '#534733');
jQuery(tmp).children('.mod_wrap').children('.mod_table').children('tbody').children('tr').children('td').children('a').children('img').css('border-color', '#9f9685');
});

});
