jQuery(document).ready(function(){ 

	jQuery('#thumbs li').mouseover(function () {
            var ElementToShow = '#' + jQuery(this).attr("id").replace('thumb','bigImage');
            //ElementToShow = ElementToShow.replace('thumb','bigImage');
            jQuery('#bigPhotoHolder li').attr("style", "display:none");
            //alert(ElementToShow);
            jQuery(ElementToShow).attr("style", "display:inline");
            //jQuery('#bigPhoto').attr('src', imgUrl);
        
        });
	
	jQuery('#bigPhotoHolder li:not(:first)').attr("style", "display:none");
        
        
	jQuery("form.ajaxForm").submit(function(){
		jQuery.ajax({
		type: "POST",
		url: jQuery(this).attr("action"),
		data: jQuery(this).serialize(),
		success: function(data){
		jQuery(this).find(".message").html("The data was submited. Thanks! " + data);
	}
	});
		return false;
	}); 
	
});
 
