/*

jQuery scripts for Systembuilt

*/

$('html').addClass('js');
		
$(document).ready(function(){

	//Set Windows Classes
 	if ($.client.os == "Windows") { $('body').addClass('win');}
	
	//Append Right Rounding to Menu in IE
 	if ($.browser.msie) { $('#text-filter a').append('<span class="right"></span>');}
 	

	// Slideshows
	$('.slideshow').cycle('fade');
	$('#testimonials-cycle').cycle('fade');

	// Toggle to view floorplan
	$('.floorplan-toggle').toggle(function() {
		$(this).parents('.home').children('.home-floorplan-panel').slideDown('slow');
		$(this).html("Close Floor Plan and Specs");
	}, function() {
		$(this).parents('.home').children('.home-floorplan-panel').slideUp('slow');
		$(this).html("Show Floor Plan and Specs");
	});
	
	// Product Filter
	$("#homes").filterprojects({
		animationSpeed: 1000,
		animationPulse: 180,
		randomize: false,
		show: { height: 'show' },
		hide: { height: 'hide' },
		filterTagSelector: [ '#style a', '#bedrooms a', '#bathrooms a' ]
	});

});
