// JavaScript Document

function slideSwitch() {
    var active = jQuery('#slideshow IMG.active');
    if ( active.length == 0 ) active = jQuery('#slideshow IMG:last');
    var next =  active.next().length ? active.next() : jQuery('#slideshow IMG:first');
    active.addClass('last-active');
    next.css({opacity: 0.0}) .addClass('active') .animate({opacity: 1.0}, 1000, function() { active.removeClass('active last-active'); }); }

jQuery(document).ready(function() {
								
	jQuery('.side-content a').lightBox();
	
	var query = self.location.href;
  	if( query.indexOf('sssshhhh') == -1 ){ }else{ jQuery("#main-title").html('Commercial Units for Sale or Lease - 2500Sq Ft'); }
	
	jQuery("#main-title:contains('Home')").css('text-align', 'center').html('Commercial Units for Sale or Lease - 2500Sq Ft<br>&quot;Priced to Sell&quot;');
	
	setInterval( "slideSwitch()", 4500 );
		
	/*  jQuery("select[name=option_7]").parent("td").html('<input type="text" name="option_7"/>');
	    jQuery("a:contains('Your Cart')").css({'text-size': '14px','font-weight': 'bold'});         */

} );
