$(document).ready(function() {
	
	// check the title field
	$("input[name=title]").keyup(function() {	    
	    var name = $("input[name=title]").val();
		name = name.toLowerCase(); // lowercase
		
	    name = name.replace(/^\s+|\s+$/g, ''); // remove leading and trailing whitespaces
	    name = name.replace(/-/g, '-');
	    name = name.replace(/\s+/g, '-'); // convert (continuous) whitespaces to one -
	    
	    name = name.replace(/[^a-zA-Z-0-9-]/g, ''); // remove everything that is not [a-z] or -
	    $("input[name=url]").val(name); // set value
	});
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown(400);
	
	});	
	
	// Expand Panel
	$("#clickOpen").click(function(){
		$("div#panel").slideDown(400);
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp(400);	
	});		
	
	// Colapse notify
	// Collapse Panel
	$("#notify").click(function(){
		$("div#notify").fadeOut(200);	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
	
	
	
	// Gallery controller
	$('#gallery').galleryView({
		gallery_width: 533,
		gallery_height: 400,
		frame_width: 120,
		frame_height: 90,
		pause_on_hover: true
	});
		
});
