Hello. My site
http://charleybiggs.com.s64567.gridserver.com/ is working properly in Chrome and Safari. When you click on certain boxes, specific divs load at the top of the page. In Firefox though these divs are automatically showing when the page loads. They are supposed to be hidden until a box is clicked. Anyone have any idea why it's doing this?
- <script type="text/javascript">
- jQuery(function(){
- jQuery("#music").click(function () {
- jQuery("#musicinfo").slideToggle('slow');
- jQuery("#fpinfo, #behindinfo, #behindinfo, #signupinfo").hide('slow');
- });
- });
- </script>
- <script type="text/javascript">
- jQuery(function(){
- jQuery("#fproduct").click(function () {
- jQuery("#fpinfo").slideToggle('slow');
- jQuery("#musicinfo, #behindinfo, #behindinfo, #signupinfo").hide('slow');
- });
- });
- </script>
- <script type="text/javascript">
- jQuery(function(){
- jQuery("#behind").click(function () {
- jQuery("#behindinfo").slideToggle('slow');
- jQuery("#fpinfo, #musicinfo").hide('slow');
- });
- });
- </script>
- <script type="text/javascript">
- jQuery(function(){
- jQuery(".exit").click(function () {
- jQuery("#behindinfo, #musicinfo, #fpinfo, #signupinfo").hide('slow');
-
- });
- });
- </script>
- <script type="text/javascript">
- jQuery(function(){
- jQuery("#signup").click(function () {
- jQuery("#signupinfo").slideToggle('slow');
- jQuery("#fpinfo, #musicinfo, #behindinfo").hide('slow');
- });
- });
- </script>
- <script type="text/javascript">
- jQuery(function(){
- jQuery(".exit").click(function () {
- jQuery("#behindinfo, #musicinfo, #fpinfo, #signupinfo").hide('slow');
-
- });
- });
- </script>