$(function(){


			 <!-- div toogles -->
			 $("#homeTheatreBtn").click(function () {
				  $('#flatPanelInfo').hide();
				$('#wholeHouseInfo').hide();
				$('#securityCamInfo').hide();
				 $('#homeTheaterInfo').fadeIn('slow');


  			  });

			$("#flatPanelBtn").click(function () {
				    $('#flatPanelInfo').fadeIn('slow');
					$('#wholeHouseInfo').hide();
					$('#securityCamInfo').hide();
					 $('#homeTheaterInfo').hide();

			});
			
			$("#wholePanelBtn").click(function () {
				    $('#wholeHouseInfo').fadeIn('slow');
					$('#flatPanelInfo').hide();
					$('#securityCamInfo').hide();
					 $('#homeTheaterInfo').hide();

			});
			
			$("#cameraPanelBtn").click(function () {
				   	$('#securityCamInfo').fadeIn('slow');
					$('#flatPanelInfo').hide();
					 $('#wholeHouseInfo').hide();
					 $('#homeTheaterInfo').hide();

			});
			
			
			
			/////================ image scollers=======================
						$("#flat_2").click(function(){
							  $("#flatHolder img").animate({ 

								"right":"255px"

							});

						 });

						 $("#flat_1").click(function(){
						  $("#flatHolder img").animate({ 

								"right":"0px"

							});

						 });


						$("#tilt_2").click(function(){
							  $("#tiltHolder img").animate({ 

								"right":"255px"

							});

						 });

						 $("#tilt_1").click(function(){
						  $("#tiltHolder img").animate({ 

								"right":"0px"

							});

						 });


						$("#artic_2").click(function(){
						  $("#articHolder img").animate({ 

								"right":"255px"

							});

						 });

						 $("#artic_1").click(function(){
						  $("#articHolder img").animate({ 

								"right":"0px"

							});

						 });
			

			


		});