
jQuery(function () {
    

	jQuery("a[rel=js-big-photo]").click(function() {
		
		jQuery("#big-photo").attr("src", jQuery(this).attr("href"));
		
		return false;
		
	});
	

	

 	$(".sendmessage-form").each(function() {
 	
	 	var id = '#' + $(this).attr('id');
 		
 		var options = { 
						    //target: id, //  '#' + $(this).attr('id'), 
						    //url: 'items',
						    success:    function() { 
						    	
 								$(id).html("<h3>Сообщение успешно отправлено</h3>");
						    	
						    },
						    beforeSubmit: function(a,f,o) {
						    //	o.dataType = "html";
						    	$(id).html('<div class="loading-status">отправка сообщения...</div>');
						    }	
						}; 

        $(this).ajaxForm(options); 
			  			          
 	}); 			          

	
	
});