
	$(document).ready(function() {
	
		// slide panel
		
		$('#tree').click(function(){
			if($('#tree-wrapper').css('marginTop') == '-334px')
			{
				$('#tree-wrapper').animate({'marginTop' : 0});
				$(this).addClass('close');
			}
			else
			{
				$('#tree-wrapper').animate({'marginTop' : '-334px'});
				$(this).removeClass('close');
			}
			return false;
		});
		
		// cycle & carousel	
		
		$('#slide-frame').cycle({
			pager: '#slide-nav',
			pause: true
		});

		$('#roller ul').jcarousel({
            		wrap : 'circular',
            		visible: 4
            	});
		
		InitFormClicks();	
				
	});

	function InitFormClicks() {
		var valPrev = "";
		$('input, textarea').focus(function(){
			if($(this).val()==$(this).attr('title')){
				valPrev = $(this).val();
				$(this).val("");
			}
		});
		$('input, textarea').blur(function(){
			if($(this).val()==""){
				$(this).val(valPrev);
			}
		});
	}
