﻿$(document).ready(function() {
    $("#galimgs a").fancybox({
        'titleShow': false,
        'transitionIn': 'elastic',
        'transitionOut': 'elastic',
        'overlayOpacity': '0.5',
        'overlayColor': '#000',
        'showNavArrows': true
    });

	$("input[type='text']").focus(function() {
		if (this.value == this.defaultValue) this.value = "";
	});
	$("input[type='text']").blur(function() {
		if (this.value == "") this.value = (this.defaultValue ? this.defaultValue : "");
	});	
});
