jQuery(document).ready(function(){
    /*
	 *  NOTE: replace the dollar sign with 'jQuery'.
	 *  
	 *  	e.g. :
     *		$('a').fadeIn();
	 *
	 *		should be:
	 *		jQuery('a').fadeIn();
	 *
	 *		http://www.corysessions.com/dev/jquery/jquery-error-is-not-a-function/
	 */
	/* Council Selectbox auto link */ 
	jQuery('select#newpath').change( function () {
		var Currlink = jQuery('select#newpath').val();
		window.location.href = Currlink;
	});
	 
	/* Department Selectbox auto link */ 
	jQuery('select#newurl').change( function () {
		var Currlink = jQuery('select#newurl').val();
		window.location.href = "/content/dma-departments/#" + Currlink;
	});
       jQuery('#edit-name--4').click(function() {
				$('#edit-name--4').css('background-image', 'url(my_image.jpg)'); } );

jQuery('#_qf_Edit_next').attr('value','Submit');
/*jQuery('ul.tabs').find('a').hide();*/

	/*jQuery('#user-pass').submit(function() {  
		jQuery(this).attr("action", "/content/password-confirmation");
	}); */
	
	/*jQuery('#user_pass').submit(function() {  
		jQuery(this).attr("action", "/content/password-confirmation");
	});*/
});
;

