/************************************************************/
/************************************************************/
/*	START variables and such for the home page images viewer	*/
	var viewer_semiphore_locked = false;
	var current_viewer_image = 0;
	
	var images = new Array();
	var image_links = new Array();
	var main_item_title_arr = new Array();
	var main_item_phrase_arr = new Array();
	
	
	images[0]="/images/search_by_map.jpg"
	image_links[0]="/?page=properties&amp;results=sale";
	main_item_title_arr[0] = "Search New Listings By Map";
	main_item_phrase_arr[0] = "Don't miss out on new listings. Check new listings daily and be the first to know.";
	
	images[1]="/images/search_by_list.jpg"
	image_links[1]="/?page=properties&amp;results=sale";
	main_item_title_arr[1] = "Search New Listings By List";
	main_item_phrase_arr[1] = "Buyer's check out our list of recently reduced prices on homes and condos. Motivated sellers are ready to bargain, schedule a showing today!";
	
	images[2]="/images/viewer_home_redcarpetHouse1.jpg"
	image_links[2]="/?page=properties&amp;results=featured";
	main_item_title_arr[2] = "See the Stars of the Show!";
	main_item_phrase_arr[2] = "See Condos, Townhomes, &amp; Homes that are listed and personally known by Coldwell Banker Agents.";
	
	images[3]="/images/viewer_home_MadDashDeals1.jpg"
	image_links[3]="/?page=properties&amp;results=foreclosure";
	main_item_title_arr[3] = "Mad Dash For Steals &amp; Deals";
	main_item_phrase_arr[3] = "Looking for a deal on Foreclosed properties? Hurry, so is everyone else!";
	
	images[4]="/images/viewer_home_sellermarketing.jpg"
	image_links[4]="/?page=sellers";
	main_item_title_arr[4] = "Got SOLD?";
	main_item_phrase_arr[4] = "Thinking of selling? Check out our Marketing Plan & Systems that will get your home \"SOLD\" in the fastest amount of time for the most amount of money.";
	
	images[5]="/images/viewer_home_EasyFinancing.jpg"
	image_links[5]="/?page=financing";
	main_item_title_arr[5] = "Financing is Easier than You Think!";
	main_item_phrase_arr[5] = "Learn about new Financing programs, current interest rates, and what you will qualify for. Free with no obligation, receive a Pre-Approval letter.";
	
	images[6]="/images/viewer_home_scheduleshowing.jpg"
	image_links[6]="/?page=contact";
	main_item_title_arr[6] = "Free - Let's Look At Homes!";
	main_item_phrase_arr[6] = "Schedule showings today! We will set up homes or condos to view based upon your criteria.";
	
	thumb_numbs = new Array();
	thumb_numbs[0] = 6;
	thumb_numbs[1] = 59;
	thumb_numbs[2] = 112;
	thumb_numbs[3] = 165;
	thumb_numbs[4] = 218;
	thumb_numbs[5] = 271;
	thumb_numbs[6] = 324;
/*	END variables and such for the home page images viewer	*/
/************************************************************/
/************************************************************/

	$(document).ready(function(){
		// this works the expandible window at the very top of the template
		$("#open_button").click(function(){
			$("#top_float").animate({top:0},300,function(){
				$("#open_button").css('z-index','10');
				$("#close_button").css('z-index','20');		
				$("#open_link").html("Click \"Close\" To Continue.");			
			});
		});
		$("#close_button").click(function(){
			$("#top_float").animate({top:-125},300,function(){
				$("#open_button").css('z-index','20');
				$("#close_button").css('z-index','10');
				$("#open_link").html("Click \"Open\" To Learn More.");			
			});
		});
		$("#open_link").click(function(){
		
			if(parseInt($("#top_float").css('top'))==-125){
				$("#top_float").animate({top:0},300,function(){
					$("#open_button").css('z-index','10');
					$("#close_button").css('z-index','20');	
					$("#open_link").html("Click \"Close\" To Continue.");			
				});
			}else{
				$("#top_float").animate({top:-125},300,function(){
					$("#open_button").css('z-index','20');
					$("#close_button").css('z-index','10');	
					$("#open_link").html("Click \"Open\" To Learn More.");			
				});
			
			}			
		});
		// this will work the acordian effect in the sidebar
		$("#first_side_item_text").css('height',273);
		$("#first_side_item_text .side_item_head").css('backgroundImage','url("./images/arrow_close.png")');
		$(".side_item_head").click(function(){
			head_el = this;
			//alert('here');
			if(parseInt($(this).parent().css('height'))!=273){
				$(".side_item").animate({height:22},200,function(){
					$(head_el).css('backgroundImage',"url('./images/arrow_open.png')");
				});
				$(".side_item_head").css('backgroundImage',"url('./images/arrow_open.png')");
				$(head_el).parent().animate({height:273},200,function(){
					$(head_el).css('backgroundImage',"url('./images/arrow_close.png')");
				});					
			}
		});
		update_twitter();
		preloader();
		image_timer();
		//create the map in the sidebar on the home page
		//gmap();
	});

