$(document).ready(function() {
	
	$('#first_name').autofill({value: 'First name', defaultTextColor: '#101014', activeTextColor: '#101014'});
	$('#last_name').autofill({value: 'Last name',defaultTextColor: '#101014', activeTextColor: '#101014'});
	$('#student_no').autofill({value: 'Student No',defaultTextColor: '#101014', activeTextColor: '#101014'});
	$('#course').autofill({value: 'Course',defaultTextColor: '#101014', activeTextColor: '#101014'});
	$('#major').autofill({value: 'Majoring in',defaultTextColor: '#101014', activeTextColor: '#101014'});
	$('#current_year').autofill({value: 'Current year (approx)',defaultTextColor: '#101014', activeTextColor: '#101014'});
	$('#phone').autofill({value: 'Phone',defaultTextColor: '#101014', activeTextColor: '#101014'});
	$('#email').autofill({value: 'Email',defaultTextColor: '#101014', activeTextColor: '#101014'});
	
	$("form.validate").validate();

	$(".drop_content").hide();

	$(".drop a").click(function(e){

		var nextEl   = $(this).parent('.drop').children('.drop_content');
		var nextImg  = $(this).children('img');
		e.preventDefault();

		nextEl.show();

	});

	 $('.drop a.tog1').toggle(

	    function(e){

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.show();

	         nextImg.attr('src',IMG_PATH+'project_white.png');

	    }, function(e) {

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.hide();

	         nextImg.attr('src',IMG_PATH+'project_grey.png');

	    });

	 $('.drop a.tog2').toggle(

	    function(e){

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.show();

	         nextImg.attr('src',IMG_PATH+'pitch_white.png');

	    }, function(e) {

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.hide();

	         nextImg.attr('src',IMG_PATH+'pitch_grey.png');

	    });

	 $('.drop a.tog3').toggle(

	    function(e){

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.show();

	         nextImg.attr('src',IMG_PATH+'brief_white.png');

	    }, function(e) {

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.hide();

	         nextImg.attr('src',IMG_PATH+'brief_grey.png');

	    });

	 $('.drop a.tog4').toggle(

	    function(e){

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.show();

	         nextImg.attr('src',IMG_PATH+'panel_white.png');

	    }, function(e) {

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.hide();

	         nextImg.attr('src',IMG_PATH+'panel_grey.png');

	    });

	 $('.drop a.tog5').toggle(

	    function(e){

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.show();

	         nextImg.attr('src',IMG_PATH+'night_white.png');

	    }, function(e) {

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.hide();

	         nextImg.attr('src',IMG_PATH+'night_grey.png');

	    });

	 $('.drop a.tog6').toggle(

	    function(e){

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.show();

	         nextImg.attr('src',IMG_PATH+'interns_white.png');

	    }, function(e) {

	    	var nextEl   = $(this).parent('.drop').children('.drop_content');
			var nextImg  = $(this).children('img');

	    	 e.preventDefault();
	         nextEl.hide();

	         nextImg.attr('src',IMG_PATH+'interns_grey.png');

	    });

	    $('.button button').hover(

	    	function(e) {

	    		var nextImg  = $(this).children('img');
	    		nextImg.attr('src', IMG_PATH+'enrol_button_hover.png');

	    	}, function (e) {

	    		var nextImg  = $(this).children('img');
	    		nextImg.attr('src', IMG_PATH+'enrol_button.png');
	    });


});
