This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Google Analytics --> | |
<script type="text/javascript" language="Javascript1.2"> | |
var gaJsHost = (("https:" == document.location.protocol) ? " https://ssl." : "http://www."); | |
document.write("<" + "script type='text/javascript' src='" + gaJsHost + "google-analytics.com/ga.js'><" + "/script>"); | |
</script> | |
<script type="text/javascript" language="Javascript" name="Google Analytics"> | |
function v_ga_track(ga_account, trackDomainName, theDomainName) { | |
var domainNameTracking = trackDomainName ? true : false; | |
var pageTracker = _gat._getTracker(ga_account); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{HTTP_HOST} ^lyonautumnchase.com$ [OR] | |
RewriteCond %{HTTP_HOST} ^www.lyonautumnchase.com$ | |
RewriteRule ^(.*)$ http://www.lyoncommunities.com/communities/welcome/autumn-chase [R=301,L] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$(".pgaPhoto").hover(function() { | |
$(this).find(".pgaTitle").stop().fadeTo(300, 1 , function() { | |
}); | |
} , function() { //on hover out... | |
$(this).find(".pgaTitle").fadeTo(300, 0); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('#mainTitles').cycle({ | |
fx: 'custom', | |
cssBefore: { | |
left: 240, | |
top: 0, | |
width: 240, | |
height: 485, | |
opacity: 0, | |
display: 'block' | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
$.backstretch = function(src, options, callback) { | |
var defaultSettings = { | |
centeredX: true, // Should we center the image on the X axis? | |
centeredY: true, // Should we center the image on the Y axis? | |
speed: 1500 // fadeIn speed for background after image loads (e.g. "fast" or 500) | |
}, | |
container = $("#backstretch"), | |
settings = container.data("settings") || defaultSettings, // If this has been called once before, use the old settings as the default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$imgString = "/images/elements/gallery-{url_title}-"; | |
$imgGallery = range(1, {community-gallery} + 1); | |
$i = $start = mt_rand(1, {community-gallery}); | |
do { | |
if ($i != 0) { | |
echo '<img src="'.$imgString.$i.'.jpg" width="730" height="340" />'; | |
} | |
$i = ($i + 1) % count($imgGallery); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{if segment_1 == 'about-us'} | |
<title>About Us | Burnham USA</title> | |
<meta name="description" content="Over the past 20+ years, Burnham USA has developed or acquired millions of square feet of commercial real estate including professional office, medical, retail, and industrial buildings throughout the United States." /> | |
{if:elseif segment_1 == "news"} | |
<title>Company News and Press | Burnham USA</title> | |
<meta name="description" content="Burnham USA company news and press releases." /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
User-agent: * | |
Disallow: / | |
Disallow: /directory/ | |
Disallow: /directory/file.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
content = "<h1>HTML CONTENT HERE</h1>"; | |
$("#contentDiv").html(content); |