﻿// JScript File

$(document).ready(function() {

    $('select.ddlSubCategories').change(function () {
          var str = $(this).val();
          if (str == 'All') {
            $('div.clSubCategory').show();
          }
          else {
            $('div.clSubCategory').hide();
            $('div.' + str).show();
          }
      });

    $('div.lbChart a').lightBox();

    $('a.relatedLinkFooter').bind( 'click', function() { 
        $('#content-main').hide();
        //alert( $(this).attr('href'));
        
        $.get( $(this).attr('href'), '', function(data) { $('#content-associations').html( data ); } );
        $('#content-associations').show();
        return false;
     } );
     
      $('a.relatedLinkHeader').bind( 'click', function() { 
        $('#content-main').hide();
        //alert( $(this).attr('href'));
        
        $.get( $(this).attr('href'), '', function(data) { $('content-associations').html( data ); } );
        $('#content-associations').show();
        return false;
     } );
     
});


function showmain() {
$('#content-associations').hide();
$('#content-main').show();
return false;
}

