// JavaScript Document

$(document).ready(function() {
/* start link button	
	$('.room_synopsis_links').click(function(){
		var my_loc= $(this).find('a').attr('href');										
		pageTracker._link(my_loc);								
	});
*/// end link button

// start suite link button
	$('.suites_links').click(function(){
		var my_loc= $(this).find('a').attr('href');										
		pageTracker._link(my_loc);								
	});
// end suite link button

//start room_synopsis grow


	$('.room_synopsis_img').click(function() {
		if ($(this).width()== 220) {
			var grow_speed = 200;							   
			$(this).parent().animate({height:"205px"},grow_speed);
			$(this).animate({height:"205px",width:"367px"}, grow_speed);
			$(this).find('img').animate({height:"205px",width:"367px"}, grow_speed);
			$(this).parent().find('.room_synopsis_title').animate({left:"392px", top:"32px"}, grow_speed);
			$(this).parent().find('.room_synopsis_text').animate({left:"392px", width:"267px", height:"168px", top:"47px"}, grow_speed);
			$(this).css('cursor',"url('images/zoomout.cur'),pointer");
		} else {
			var shrink_speed = 200;
			$(this).parent().animate({height:"123px"},shrink_speed);
			$(this).animate({height:"123px",width:"220px"}, shrink_speed);
			$(this).find('img').animate({height:"123px",width:"220px"}, shrink_speed);
			$(this).parent().find('.room_synopsis_title').animate({left:"245px", top:"10px"}, shrink_speed);
			$(this).parent().find('.room_synopsis_text').animate({left:"245px", width:"414px", height:"101px", top:"32px"}, shrink_speed);
			$(this).parent().find('.room_right_white').animate({height:"143px"}, shrink_speed);
			$(this).css('cursor',"url('images/zoomin.cur'),pointer");
		}
		
	});

//end room_synopsis grow

//start suite_fp link

	$('#suites_fp_link').click(function () {
		$('#suites_floor_plan').show(0);
		$(this).parent().hide(0);
		return false;
	 });
//end suite_fp link

});