// JavaScript Document

$(document).ready(function(){
						   
	$('tbody tr:nth-child(odd)').addClass("odd"); // zebra table
	
	$('#searchform #s').focus(function() {
		if (this.value == this.defaultValue){
			$('#searchform #s').css("color", "#333333");
			this.value = '';
		}
		if(this.value != this.defaultValue){
			this.select();
		}
	});
	$('#searchform #s').blur(function() {
		if ($.trim(this.value) == ''){
			this.value = (this.defaultValue ? this.defaultValue : '');
			$('#searchform #s').css("color", "#667534");
		}
	});
	
	$(".fancybox").fancybox({
		'padding': 0,
		'overlayOpacity': 0.5		
	});

});
