/**
 * Core JS File (included on every page for main functions)
 *
 * Wild Futures' Monkey Sanctuary Website (monkeysanctuary.org)
 * Website Desiged & Developed by Papertank (papertank.co.uk)
 * Copyright (c) Papertank LLP (hello@papertank.co.uk) 2010. All rights reserved.
 *
*/

	//$ = jQuery.noConflict();

 jQuery(function($) {
 
		 $(document).ready(function() {
            		 
		
		     $('#tabs').tabs({
				cookie: {
					expires: 1
				}
			 });
			 
			$( "#donate_slider" ).slider({
				value:10,
				min: 5,
				max: 40,
				step: 5,
				slide: function( event, ui ) {
					$("#donate_slider").parent().removeClass('d5 d10 d15 d20 d25 d30 d35 d40');
					$("#donate_slider").parent().addClass('d'+ui.value);
					$( "#donate_amount" ).val( ui.value );
				}
			});
			
			$("#donate_slider").parent().removeClass('d5 d10 d15 d20 d25 d30 d35 d40');
			$("#donate_slider").parent().addClass('d10');
			$( "#donate_amount" ).val( 10 );		 
		     
		     $('a#toggleDrop').click(function(){
		
				$('.drop-down').slideToggle('slow');
				
			 });
			 
			$("label").click(function(){
				$(this).children('input:radio').attr("checked", "checked");
			});	
			
			$("#search-field").focus(function(){
				if ( $(this).val() == 'SEARCH' )
				{
					$(this).val('');
				}
			}); 

			$("#search-field").focusout(function(){
				if ( $(this).val() == '' )
				{
					$(this).val('SEARCH');
				}
			}); 
			
			$("#search").submit(function(){
				if ( $(this).val() == 'SEARCH' )
				{
					$(this).val('');
				}
			});
			 
		});

	$(window).load(function() {
	     $('#slider').nivoSlider({
	     	effect:'fade'
	     });
	});

});
