$.fn.clearfocus = function() {
	return this.focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
};

$(document).ready(function(){

	$("a").focus(function() {
		$(this).blur();
	});

	$(".lightbox").lightbox();

	$('.technicaldata tr:even').addClass('zebra');

	$('#slider ul').cycle({
	    fx: 'scrollLeft',
	    timeout: 4000
	});

});