/* 
Author: Brad Grabowski
Company: Caffeen Studios
Date: 11-2011	
*/

$(function() {
	/* =============================================================================
   								Responsive Navigation
   =============================================================================== */  
	// Create the dropdown base
	$("<select />").appendTo("#nav-main");
	
	// Create default option "Go to..."
	$("<option />", {
	 "selected": "selected",
	 "value"   : "",
	 "text"    : "Select page..."
	}).appendTo("nav select");
	
	// Populate dropdown with menu items
	$("#nav-main a").each(function() {
	var el = $(this);
	$("<option />", {
	   "value"   : el.attr("href"),
	   "text"    : el.text()
	}).appendTo("#nav-main select");
	});
	
	// To make dropdown actually work
	// To make more unobtrusive: http://css-tricks.com/4064-unobtrusive-page-changer/
	$("#nav-main select").change(function() {
	window.location = $(this).find("option:selected").val();
	});
	
	
	/* =============================================================================
   								Page Slide Animation
   =============================================================================== */  
	$('a').bind('click',function(event){
		var $anchor = $(this);
		
		$('html, body').stop().animate({
			scrollTop: $($anchor.attr('href')).offset().top
		}, 1500,'easeInOutExpo');
		event.preventDefault();
			
	});
		 
});



