
$(document).ready(function() {  

	//Adds a selected class to the selected menu item, also adds a selected class to the parent menu item if a dropdown menu item is selected
	$(function () {
	var path = location.pathname;
	if (path) {
		var Selector = $('#menu a[href$="' + path + location.search + '"]');

		$(Selector).parent("li").attr('class', 'selected');
		$(Selector).parent("li").parent("ul").parent("li").attr("class", "selected"); //Adds selected class to the drop down menus parent li
		$("#menu li ul li").removeAttr("class", "selected"); //Remove selected class for drop down menu items
	}
	});
	
	$('#slides') 
	.cycle({ 
		fx:     'fade',
		speed:  1000,
		timeout: 10000,  
		pager:  '#nav',
		cleartypeNoBg: true,
		pagerAnchorBuilder: function(idx, slide) {
		  return '<li><a href="#">' + (idx+1) + '</a></li>';
		}
	});
	
	$('#recent_projects p:nth-child(3)').css({"margin-left": "20px", "margin-right": "20px"});

});
