// JavaScript Document

        jQuery(document).ready(function() {
			
			$("#edit-search-theme-form-1").val(' search');
		  	$("#edit-search-theme-form-1").focus(function() {
		    	if (this.value == ' search') {
					this.style.color = 'black';
		      		this.value = '';
		    	}
		    	$(this).blur(function() {
		      		if (this.value == '') {
						this.style.color = 'grey';
		        		this.value = ' search';
		      		}
		    	});
		  	});
							   
		    $('.slideshow').cycle({
				fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
				speed: 10000				  
			});
							   
			$(".click-structureunderstand").click(function(){document.location.href="/services/structure_and_understand"});
		    $(".click-developmanage").click(function(){document.location.href="/services/develop_and_manage"});
			$(".click-chooseuse").click(function(){document.location.href="/services/choose_and_use"});							
        });
