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