$(document).ready(function() {
	$("div#nav li").hover(
  function () {
    $(this).addClass("hover");
  }, 
  function () {
    $(this).removeClass("hover");
  }
);

	
	$("div.home div#nav li:first, div#container div.page-content:first").addClass('selected');
	$("div.home div#nav a").click(function(){
		$("li.selected").removeClass("selected");
		$(this).parents("li").addClass("selected");
		return false;
	});
	$("div.home div#nav li.page-item-6 a").click(function(){
		$("div#container div.selected").fadeOut('fast', function() {
		// Animation complete.
		$(this).removeClass('selected');
			$("div#container div.our-work").fadeIn('slow', function() {
			// Animation complete.
			$(this).addClass('selected')
			});
		});
	});
	$("div.home div#nav li.page-item-3 a").click(function(){
		$("div#container div.selected").fadeOut('fast', function() {
		// Animation complete.
		$(this).removeClass('selected');
			$("div#container div.what-we-do").fadeIn('slow', function() {
			// Animation complete.
			$(this).addClass('selected');
			});
		});
	});
	$("div.home div#nav li.page-item-2 a").click(function(){
		$("div#container div.selected").fadeOut('fast', function() {
		// Animation complete.
		$(this).removeClass('selected');
			$("div#container div.about").fadeIn('slow', function() {
			// Animation complete.
			$(this).addClass('selected');
			});
		});
	});
	$("div.home div#nav li.page-item-49 a").click(function(){
		$("div#container div.selected").fadeOut('fast', function() {
		// Animation complete.
		$(this).removeClass('selected');
			$("div#container div.contact").fadeIn('slow', function() {
			// Animation complete.
			$(this).addClass('selected');
			});
		});
	});
	var el = $('.twitter-5 h2.widgettitle a.twitterwidget-title');
	el.html(el.html().replace(/: codeflowllc/ig, ""));

});

