// JavaScript Document

Cufon.replace('h1, h2, h3, .phone, .fastContact h4, a.button, .blurbRow a span, .footer, p.excerpt, .productCat a span, .subProductCat a span, .prodDesc, fieldset legend, fieldset strong, .pageSidebar, .blurbRow .text, .mainContent p');
Cufon.replace('ul.globalNav a, ul.subNav a', {hover:true});

	$(document).ready(function(){
		
		//BLURB HOVERS
		$('.frontImgBlurb').hover(function(){
			$(this).addClass('hover');	
		}, function(){
			$(this).removeClass('hover');
		});
		
		$('.frontImgBlurb').click(function(e){
			
			if (e.target.nodeName != "A") {
				
				var url = $(this).find('a').attr('href');
				
				if (url != null) {
					window.location = url;
				} else {
					return false;
				}
			}
			
		});
		
		if($('.relImg img').size() > 1) {
			
			$('.relImg').css('height','130px');
			$('.relImg').cycle();
				
		}
	
			   
	});
