$(document).ready(function() {
        $('	img.mov').mouseover(function() {
		
			startm($(this).attr('id'), '/motion/' + $(this).attr('id').substring(4) + '/' + $(this).attr('id').substring(4) + '_' , '.jpg');
          
        });
		
		$('img.mov').mouseout(function() {
		
			endm($(this).attr('id'));
			$(this).attr('src','/motion/' + $(this).attr('id').substring(4) + '/' + $(this).attr('id').substring(4) + '_01.jpg');
			
        });
		$('img.mov').click(function() {
		
			endm($(this).attr('id'));
			$(this).attr('src','/motion/' + $(this).attr('id').substring(4) + '/' + $(this).attr('id').substring(4) + '_01.jpg');
			
        });
});
