$(document).ready(function(){
    // Add the rounded corners to the bottom of the container
    $("#content").append('<img src="/public/images/container-bl.jpg" style="position:absolute;bottom:0;left:-10px" />');
    $("#content").append('<img src="/public/images/container-br.jpg" style="position:absolute;bottom:0;right:0" />');
    // Focus on inputs
    $("#content .textbox,#content textarea").focus(function(){
        $(this).addClass("focus");
    });
    $("#content .textbox,#content textarea").blur(function(){
        $(this).removeClass("focus");
    });
	// If we click on the login link, scroll down the top bar
	$("#login-link").click(function(){
		$("#header-pre").slideDown("slow");
		$(this).css("outline", "none");
		return false;
	});
	// Zoom in on images
    $("a.zoom").fancybox();
    // Remove something
    $(".remove").click(function() {
        if (confirm('Are you sure you want to remove this?')) {
            return true;
        }
        return false;
    });
    // Show the more detailed site positioning
    $("#seo-movement-extra-discover").click(function(){
        $("#seo-movement-extra-discover").parent().slideUp(750);
        $("#seo-movement-extra").slideDown(750);
        return false;
    });
});