$(document).ready(function() {
    // Clear field value when clicked
    $(".has_default_value").focus(function() {
        if ($(this).val() == $(this).attr("title")) {
            $(this).val("");
        }
    });
    $(".has_default_value").blur(function() {
        if ($(this).val() == "") {
            $(this).val($(this).attr("title"));
        }
    });
    // Colorbox
    $('a.colorbox').colorbox({ transition: 'slide', maxHeight: '90%', speed: 500 });
    // Remove focus outline on click
    $("a").mousedown(function() {
        this.blur();
        this.hideFocus = true;
        this.style.outline = 'none';
    });
    // Rollovers
    $(".rollover").hover(function() {
        this.src = this.src.replace("_off.", "_on.");
    },
	function() {
	    this.src = this.src.replace("_on.", "_off.");
	});
    $(".rollover").each(function() {
        source_image = $(this).attr("src");
        rename_image = source_image.replace(/\_off./gi, "_on.");
        $("<img>").attr("src", rename_image);
    });
});