$(document).ready(function() {

    /* Hide the sub menu items first */
    $('ul#menu li ul').hide();

    /* On click */
    $('ul#menu li a').click(function() {
        if($('ul', $(this).parent()).children().length) {
            $('ul', $(this).parent()).slideToggle("fast"); 
            return false; 
        } else {
            return true;
        }
    })
	$('ul#menu a').each(function() {
  	if($(this).attr('href') == window.location) {
		$(this).css('color','#f00');
		$(this).parents().show();
  		}
    })
		$('#reply a').click(function() {
		$('#comment-form').slideToggle("slow");
		return false;
	});
});

$(document).ready(function() {
        $('#slider, #slider1').s3Slider({
            timeOut: 10000 
        });
    });
