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
| CREATE TABLE IF NOT EXISTS `states` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `abbr` varchar(2) NOT NULL, | |
| `name` varchar(250) NOT NULL, | |
| PRIMARY KEY (`id`) | |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=52 ; | |
| INSERT INTO `states` (`id`, `abbr`, `name`) VALUES | |
| (1, 'AL', 'Alabama'), | |
| (2, 'AK', 'Alaska'), |
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
| <script type="text/javascript" charset="utf-8"> | |
| if(typeof sIFR == "function"){ | |
| sIFR.replaceElement(named({sSelector:"h1", sFlashSrc:"<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/swf/sifr.swf", sColor:"#404e1c", sWmode:"transparent"})); | |
| sIFR.replaceElement(named({sSelector:"h2.contentheading, #content h2, #content h3", sFlashSrc:"<?php echo $this->baseurl ?>/templates/<?php echo $this->template ?>/swf/sifr.swf", sColor:"#404e1c", sWmode:"transparent"})); | |
| }; | |
| </script> |
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
| var flashvars = {}; | |
| var params = { | |
| menu: "false", | |
| wmode: "transparent" | |
| }; | |
| var attributes = {}; | |
| swfobject.embedSWF("swf/slideshow.swf", "flash-header", "1000", "317","9.0.0", "", flashvars, params, attributes); |
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
| $('#main-nav ul li').each(function() { | |
| $(this).hover(function() { | |
| $(this).addClass('nav-on'); | |
| }, function() { | |
| $(this).removeClass('nav-on'); | |
| }); | |
| }); |
NewerOlder