$(document).ready(function(){

	$('.locator, .search').focus(function(){
		$(this).addClass('active');
		if(this.value == this.defaultValue)
			this.value = '';
	}).bind('blur',function(){
		if(this.value == '')
		{
			$(this).removeClass('active');
			this.value = this.defaultValue;
		}
	});
	
	$('#personal-options, #business-options').change(function(el){
		location.href = $(this).val();
		return false;
	});
	
	$("#jflow_slider_control_whats_new").jFlow({
		slides: "#jflow_slider_slides_whats_new",
		width: 405,
		height: 170,
		duration: 400
	});
	
	$("#jflow_slider_control_events").jFlow({
		slides: "#jflow_slider_slides_events",
		width: 405,
		height: 170,
		duration: 400
	});
	
});