﻿
/*$(window).load(function () {
    $('#ctl00_imageloop').orbit({
        'bullets': false,
        'timer': true,
        'animation': 'fade',
        'directionalNav': false,
        'advanceSpeed': 8000
    });
});*/

$(document).ready(function () {
    $('#menu li').hover(
		function () {
		    //show its submenu
		    $('ul', this).slideDown(100);
		},
		function () {
		    //hide its submenu
		    $('ul', this).slideUp(100);
		}
	);

	$('.searchbox').each(function () {
		var default_value = this.value;
		$(this).focus(function () {
		    if (this.value == default_value) {
		        this.value = '';
		        $(this).css('color', '#FFF');
		    }
		});
		$(this).blur(function () {
		    if (this.value == '') {
		        this.value = default_value;
		        $(this).css('color', '#CCC');
		    }
		});
	});
});
