$(document).ready(function(){
	$('html').removeClass('no-js').addClass('js-enabled');	
	//alert('it Works');
	
	/********** Start jQuery Cycle **********/	
	$(window).load(function () {
		$('.hp #collage').show();
		$('.hp #collage').cycle({
			fx: 'fade',
			random: true, 
			delay: 0,  
			speed:   2000,
			timeout: 5500
		});  
	});
	/********** End jQuery Cycle **********/
	
	$('#searchField').each(function() {
		var default_value = this.value;
		$(this).focus(function() {
			if(this.value == default_value) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = default_value;
			}
		});
	})
});




