jQuery(document).ready(function(){	

/* Contact Form */

$("#contactForm fieldset#contactDetails input, #contactForm textarea").css("-moz-border-radius","10px");
$("#contactForm fieldset#contactDetails input, #contactForm textarea").css("-webkit-border-radius","10px");
$("#contactForm fieldset#contactDetails input, #contactForm textarea").css("border-radius","10px");
$("#contactForm fieldset input, #contactForm textarea").css("-moz-border-radius","10px");
$("#contactForm fieldset input, #contactForm textarea").css("border-radius","10px");
$("#contactForm fieldset input, #contactForm textarea").css("-webkit-border-radius","10px");
							

/* Dropdowns */

$("#subnav-skip-hire").hide();
	
$("#navigation ul li a.skip-a").hover(function() {
	$("#subnav-skip-hire").stop(true, true).slideToggle('medium'); },
function() {
	$("#subnav-skip-hire").stop(true, true).slideToggle('medium');
});

$("#subnav-skip-hire").hover(function() {
		$(this).stop(true, true).show(); },
	function() {
		$(this).stop(true,true).slideUp('medium'); 			
});


$("#subnav-waste-management").hide();
	
$("#navigation ul li a.waste-a").hover(function() {
	$("#subnav-waste-management").stop(true, true).slideToggle('medium'); },
function() {
	$("#subnav-waste-management").stop(true, true).slideToggle('medium');
});

$("#subnav-waste-management").hover(function() {
		$(this).stop(true, true).show(); },
	function() {
		$(this).stop(true,true).slideUp('medium'); 			
});


$("#subnav-reclamation").hide();
	
$("#navigation ul li a.reclamation-a").hover(function() {
	$("#subnav-reclamation").stop(true, true).slideToggle('medium'); },
function() {
	$("#subnav-reclamation").stop(true, true).slideToggle('medium');
});

$("#subnav-reclamation").hover(function() {
		$(this).stop(true, true).show(); },
	function() {
		$(this).stop(true,true).slideUp('medium'); 			
});


});
