// JavaScript Document
$(document).ready(function() {
	$("#client_login").click(function() {
		$( "#dialog-confirm" ).dialog({
				resizable: false,
				height:250,
				width:400,
				modal: true,
				buttons: {
					"Proceed": function() {
						window.location = 'http://share4.linearcube.com/share/page/site-index';
					},
					Cancel: function() {
						$( this ).dialog( "close" );
					}
				}
			});													 
		
		return false;
	});
});
