﻿$(document).ready(function () {
    nav();
    general();
});

function nav() {
    $("ul#nav").superfish({
        animation: {
            //height: 'show',
            opacity: 'show'
        },
        delay: 600,
        autoArrows: true,
        dropShadows: false
    });

    $('.nav_wrap ul#nav li ul.subnav li:first-child').addClass('first_item')
    $('.nav_wrap ul#nav li ul.subnav li:last-child').addClass('last_item');

    $('.top_list:last-child').children('ul.subnav').addClass('ltr');
}

function general() {
    $('.side_widget ul li:last-child').addClass('last_item');
    $.each($('.head_text_wrap h3'), function (i, v) { if ($(v).is(':empty')) { $(v).parent().parent().hide(); } })
}

function clearIt(what) {
    if (what.value == what.defaultValue) what.value = '';
}

function setIt(what) {
    if (what.value == '') what.value = what.defaultValue;
}


$(document).ready(function () 
{
   if($(".banner_single").length>0)
   {
	$(".banner_single").rotator();
   }
});

