/* Author:
Dayle Rees. Copyright (c) 2012.
*/

$(document).ready(function () {

	// hide the comment form by default
	$('.comment-form').hide();

	// show the comment form when needed
	$('#comment-toggle').click(function (e) {
		e.preventDefault();
		$('.comment-form').fadeIn(200);
		$(this).hide();
	});

	// workings for the mobile nav seleect
	$('#mobile-nav').change(function () {
		if ($(this).val() !== '') window.location.href = wp_url + "/category/" + $(this).val();
	});

});






















