﻿$(function() {  
	$(".carousel").jMyCarousel({  
		visible: '380px',  
		auto: true,
		circular: true,
		speed: 1500
	});  

	
	if($.browser.msie) { 
		$('h3, button').hover(
			function(){ $(this).addClass("hover"); },
			function(){ $(this).removeClass("hover") }
		);
	}

	triggers = $('.carousel a');
	target = $('#dialog .body');
	
	triggers.click( function (event) { 
		event.preventDefault();
		target.html('<img src="' + this.href +'" alt="" />');
		$('#dialog').jqmShow();		
		});
	$('#dialog').jqm();
	
});  