$(function() {  
	$(".carousel").jMyCarousel({  
		visible: '100%',  
		auto: true,
		speed: 1500
	});  

	triggers = $('.carousel a');
	target = $('#dialog .body');
	
	triggers.click( function (event) { 
		event.preventDefault();
		target.html('<img src="' + this.href +'" alt="" />');
		$('#dialog').jqmShow();		
		});
	$('#dialog').jqm();
	
});  
