﻿$(function() 
	{   
	    $('html').removeClass('js');
	    $('.carousel').jcarousel({ visible:5, scroll:5 }); 
	    $('.button').button();
	    $('.jquery-form').jQueryForm();
	    
	    $("#generic-alert").dialog({
		    autoOpen: false,
			bgiframe: true,
			resizable: false,
			modal: true,
			buttons: {
				Ok: function() {
					$(this).dialog('close');
				}
			}
		});
		
		$("#generic-check").dialog({
		    autoOpen: false,
			bgiframe: true,
			resizable: false,
			modal: true,
			buttons: {
				Ok: function() {
					$(this).dialog('close');
				}
			}
		});
	});
