﻿$(document).ready(function() {

    // perform JavaScript after the document is scriptable. 
    //$(function() { 
    // setup ul.tabs to work as tabs for each div directly under div.panes 
    // $("ul.tabs").tabs("div.panes > div"); 
    //});
// Tabs   
   // alert('test');
    //replace kids heading with an image#

    var text = $('#tab0 h3').text().replace(" ", "");
    if (text == 'KIDS') {
        // alert('yes');
        $('#tab0 h3').hide();
        $('#tab0').prepend('<img class="text_replacement_image" src="/images/kids_text.png" alt="kids" />');
    }

    $('#tabs').tabs();

});
