$(document).ready(function() {

	// Tabs
	$('#tabs').tabs();
	$('#tabs2').tabs();
	$('#tabs3').tabs();
	$('#tabs4').tabs();
	$('#tabs5').tabs();
	$('#tabs6').tabs();
	$('#tabs7').tabs();
	$('#tabs8').tabs();
	$('#tabs9').tabs();
	$('#tabs10').tabs();

	// Dialog			
	$('#dialog').dialog({
		dialogClass: "flora",
		autoOpen: false,
		width: 675,
		height: 540,
		position: 'top',
		buttons: {
			"Ok": function() { 
				$(this).dialog("close"); 
			}
		}
	});
	$('.flora.ui-dialog').css({
		position:"fixed", 
		top: '30px', 
		width: '675px', 
		height: '540px'
	});
	$(".ui-resizable").stop(function() {
		$(".flora.ui-dialog").css({
			position:"fixed"
		});
	});
	
	// Dialog Link
	//	$('#dialog_link').click(function(){
	//		$('#dialog').dialog('open');
	//		return false;
	//	});

	$('.textPanel').addClass("ui-widget ui-widget-content ui-corner-all");
					
	$('img').click(function(event){
		$('#dialog').dialog('open');
		$(".showMe").remove();
		$('.flora').css({
			top: '30px', 
			width: '675px', 
			height: '540px'
		});
		var image = $("<img/>")
		.attr("src", this.alt)
		.css({
			//width: "640px",
			height: "427px"
		})
		.addClass("showMe")
		.attr("alt", 'Stor bild')
		.appendTo("#dialog");
		//$("#visaBild").show(100);
		$('#dialog').css({
			'textAlign':'center'
		});
		return false;
	});
	
});

