// JavaScript Document

$(document).ready(function(){

	$(function() {
		$('.menu').hover(function(){	
				$(this).find('.menuitems').css("visibility", "visible");
			}, function(){
				$(this).find('.menuitems').css("visibility", "hidden");
		});
	});
	
	
	//$('#demodownloadform h4').fadeTo(100,0.01);	
	//$('#demodownloadform div').fadeTo(100,0.01);
		
	$('#demodownloadbutton').toggle(function() {
	  	$(this).parents("#demoouter").find("#demodownloadform").animate({"height":"toggle"}, {queue:false,duration:600});
		//$(this).parents("#demoouter").find("#demodownloadform h4,div").fadeTo(800,1);
	}, function() {
		$(this).parents("#demoouter").find("#demodownloadform").animate({"height":"toggle"}, {queue:false,duration:600});
	  	//$(this).parents("#demoouter").find("#demodownloadform").animate({"height":"toggle"}, {queue:false,duration:600});
	});
	
	
	

});
