// JavaScript Document
// -------
// Phone Interview Pro
// @ author: Lastpixel Studios
// -------

// activate the proper primary nav menu item
$(document).ready(function(){

	// set the proper nav item
	$(function() {
		$(".active").css({'background' : '#1676bd'});
		$(".active a").css({'color' : '#e5ce7e'});
	});
	
	// logo
	$(".logo").hover(function() {
		$(this).css({'cursor' : 'pointer'});		  
	});
	$(".logo").click(function() {
		window.location="index.php";			  
	});

	// speaking form
	$("#more-info-btn").hover(function() {
		$(this).css({'cursor' : 'pointer'});		  
	});
	$("#more-info-btn").click(function() {
			$("#speaking-form").slideToggle();						   
	});

});