// JavaScript Document
jQuery(document).ready(function() {
	jQuery("#winlogin").dialog({ autoOpen: false, height: 150, minHeight: 150,
							   resizable: false,
							   draggable: false,
							   modal: true,
							   title: 'Login'							   
	});
	
	if(jQuery("#gallery").length){
		Galleria.loadTheme('/jscript/jquery/galleria/themes/classic/galleria.classic.min.js');
		jQuery("#gallery").galleria({
        	width: 700,
    	    height: 500
	    });	
	}//if
});

function showLogin(){
	jQuery("#winlogin").dialog("open");
	jQuery("#winlogin").height(150);
}//showLogin
