// JavaScript Document
Cufon.replace('h1, h2', { fontFamily: 'Kozuka Gothic Pro OpenTypeR', hover: true });
Cufon.replace('.headerAddress p, .quickContact, .banner h1 span', { fontFamily: 'Kozuka Gothic Pro OpenTypeB', hover: true });
Cufon.replace('.mainMenu ul > li', { fontFamily: 'Kozuka Gothic Pro OpenTypeB', hover: true, hoverables: {li: true}, ignore: {div: true}});

$(document).ready(function(){
	$('.footerLeft ul li:first').css('padding-left','0');
	$('.footerLeft ul li:last').css('background','none');
	
    $('#slider').cycle({
    
			fx: 'fade',
			prev:   '#prev', 
			next:   '#next', 
			timeout: 7000,
			cleartype: true,
			cleartypeNoBg: true
	
	});
	
	$('h3').each(function () {
		var id = $(this).attr('id');
		var answer = '#' + id + 'a';
	
		$(this).bind('click', function(){
		  
		  if ($(answer).is(':visible')){
		  
		  	$(answer).hide('fast');
		  
		  }else{
		  
		  	$(answer).show('fast');
		  
		  }
		
		});
  	});
  	
	$("#menu-item-55>a").click(function(){
		return false;
  	});
	
});
