$(document).ready(function(){
						   
  							$('.Rimg a').hover(function(){
											
											var Lhref = $(this).attr("href");
											var LAlt = $(this).attr("title");
											
											$('#LImg').attr({ src: Lhref, alt: LAlt });
											
											//$('#LImg').animate("shake");
											
											return false;  
											});
						    $('.Rimg a').click(function(){
											
											var Lhref = $(this).attr("href");
											var LAlt = $(this).attr("title");
											
											$('#LImg').attr({ src: Lhref, alt: LAlt });
											
											//$('#LImg').animate("shake");
											
											return false;  
											});
                        
                        });
