﻿$(document).ready(function () {
    //MAKES DEFAULT TEXT IN TEXT BOX DISAPPEAR
    $('input.text').focus(function () {
        defaultText = $(this).val();
        $(this).val('');
    });
    $('input.text').blur(function () {
        if ($(this).val() == "") {
            $(this).val(defaultText);
        }
    });
    //CONTROLS DROPDOWN NAVIGATIONS
    $('.middle .side-nav ul li, .nav ul li').hover(
	function () {
	    $(this).children(':first-child').addClass('hover');
	    $(this).children('ul, div').show();
	},
	function () {
	    $(this).children(':first-child').removeClass('hover');
	    $(this).children('ul, div').hide();
	});
	$('a img').parent().css('border', 'none');/*To Remove Dotted Underlines from Images*/
});
