jQuery(function($) {
	$("img").pngfix();
	
	$('#photo_list a').each(function(){
		var imgsrc = this.name;
		var imgtitle = this.title;
		$('#photo').append('<img src="' + imgsrc + '" style="display:none;" />');
		$(this).click(function(){
			$('#photo img').attr("src", imgsrc);
			$('#photo img').attr("alt", imgtitle);
		});
	});
	
	//Odd Even Set
	$('ul').each(function(){
		$(this).find('li:first').addClass('first');
		$(this).find('li:odd').addClass('odd');
		$(this).find('li:even').addClass('even');
		$(this).find('li:last').addClass('last');
	});
	$('table').each(function(){
		$(this).find('tr:first').addClass('first');
		$(this).find('tr:odd').addClass('odd');
		$(this).find('tr:even').addClass('even');
		$(this).find('tr:last').addClass('last');
	});

});

MJL.event.add(window, "load", function(event) {

	MJL.enable.flash("flash", {version:8});
	MJL.enable.rollover("roll", {disable:"unroll", active:"active"});
	MJL.enable.styleSwitcher("styleSwitcher", {active:"active"});

}, false);

