
		jQuery(document).ready(function() {
		
			jQuery('#tf-email').each(function() {
				var default_value = this.value;
				jQuery(this).focus(function() {
					if(this.value == default_value) {
						this.value = '';
						jQuery(this).css('color', '#000000');
					}
				});
				jQuery(this).blur(function() {
					if(this.value == '') {
						jQuery(this).css('color', '#b9b7b0');
						this.value = default_value;
					}
				});
			});
			
			
			jQuery('#marquee').nivoSlider({
				effect:'fade',
				slices:1,
				animSpeed:1000,
				pauseTime:6000,
				startSlide:0,
				directionNav:false,
				controlNav:false,
				keyboardNav:false,
				pauseOnHover:false
			});
			
		});
	

		var _gaq = _gaq || [];
		_gaq.push(['_setAccount', 'UA-12285465-2']);
		_gaq.push(['_trackPageview']);

		(function() {
			var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
			ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
			var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
		})();

	
