var $page;
jQuery(document).ready(function($) {
	
	//$('#client-login .username').defaultValue('username (email)');
	//$('#client-login .password').defaultValue('password');	
	
	
	if (!$page) $page = 'home';
	
	switch($page) {
		
		/*
		case 'services-carpet-cleaning':
		case 'services-carpet-repair':
		case 'services-tilegrout-cleaning':
		case 'services-upholstery-cleaning':
			$('#quotes').quote_rotator({
				rotation_speed: 7000				   
			});
			break;
		*/
		case 'tips-care':
			$('#quotes').quote_rotator({
				rotation_speed: 7000				   
			});
			break;
	}
	
	
});

function popUp(url, width, height) {
	
	if (width == null) width = 800;
	if (height == null) height = 600;
	
	var centeredY = (screen.height - height)/2;
	var centeredX = (screen.width - width)/2;
	
	prevWin=window.open(url,"spop","left="+ centeredX+",top="+ centeredY+",scrollbars=YES,resizable=yes,width=" +width +",height="+height);
	if(prevWin.opener == null) prevWin.opener=self;
	prevWin.focus();
}

