jQuery(document).ready(function(){	
								
$("#buckets ul li span").css("-moz-border-radius","10px");
$("#buckets ul li span").css("-webkit-border-radius","10px");
$("#buckets ul li span").css("border-radius","10px");						

/* 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");


//Bucket Hover States 
$("#buckets ul li").hover(function(){
	$(this).children("span").css("color","#000"); },
function() {
	$(this).children("span").css("color","#fff");
	});





//Subnav Events
$("#navigation ul li a.fire-alarms-a").hover(function() {
		$("#fireAlarmsSN").stop(true, true).slideToggle('medium'); },
		function() {
		$("#fireAlarmsSN").stop(true, true).slideToggle('medium'); 
	});
	
	$("#fireAlarmsSN").hover(function() {
		$(this).stop(true, true).show(); },
	function() {
		$(this).stop(true,true).slideUp('medium'); });	


$("#navigation ul li a.cctv-a").hover(function() {
		$("#cctvSN").stop(true, true).slideToggle('medium'); },
		function() {
		$("#cctvSN").stop(true, true).slideToggle('medium'); 
	});
	
	$("#cctvSN").hover(function() {
		$(this).stop(true, true).show(); },
	function() {
		$(this).stop(true,true).slideUp('medium'); });	
	
$("#navigation ul li a.access-control-a").hover(function() {
	$("#accessControlSystemsSN").stop(true, true).slideToggle('medium'); },
	function() {
	$("#accessControlSystemsSN").stop(true, true).slideToggle('medium'); 
});

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

							
});
