
/******************
== ELIM SEARCH
******************/

$(function(){

	function autoFill(id, v){
		$(id).css({ color: "#666" }).attr({ value: v }).focus(function(){
			if($(this).val()==v){
				$(this).val("").css({ color: "#fff" });
			}
		}).blur(function(){
			if($(this).val()==""){
				$(this).css({ color: "#666" }).val(v);
			}
		});
	}
	
	autoFill('#newsletter', 'Join the Newsletter...');
	autoFill('#keywords', 'Search the Site...');
	
	
	$('.clickable').click(function(){
		location.href = $(this).find('a').attr('href');
	})
	
	
});

