$(document).ready(function(){

	//  Input Focus		
	$('input, textarea, select').focus(function(){
		$(this).addClass("over");
		if($(this).value == "Type a Keyword...") {
			alert($(this).value);
			$(this).value == "";	
		}
		}).blur(function(){
		$(this).removeClass("over");
	});	
	
	//  Lightbox
	$("a[rel='lightbox']").fancybox({
		'titleShow' : false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'scrolling' : 'no'
	});
});
