$(function(){
	$('.rub-toggle').click(function(){
		$(this).parent().next('div.ss-navigation').slideToggle(500);
		return false
	});
	
	var connect = $('<div>', {
		title: 'connection',
		id: 'connect'
	}).load("account/start.html", function(){
		$(this).appendTo("body");
	
		$(this).dialog({
			autoOpen: false,
			draggable: false,
			resizable: false,
			width: "auto"
		});
	});
	
	$('.connect').click(function(){
		connect.dialog("open");
		return false
	});
//	$("img[rel]").overlay();
})
