$(function() { 
	
	$('ul.slider').each(function() {
		$('li.slide', this).dumbCrossFade({'slideType':'fade','maxZIndex':10,'showTime':6000});
	});
	$('li.slide.lessonstore').click(function() {
		window.location.href = '/page.html';
	});
	
	$('input.email').focus(function() {
		if ($(this).val() == 'Enter your email address...') {
			$(this).val('');
		}
	});
	$('input.email').blur(function() {
		if ($(this).val() == '') {
			$(this).val('Enter your email address...');
		}
	});
	
	$('input.query').focus(function() {
		if ($(this).val() == 'Enter keyword/s...') {
			$(this).val('');
		}
	});
	$('input.query').blur(function() {
		if ($(this).val() == '') {
			$(this).val('Enter keyword/s...');
		}
	});
	
}); 
