﻿// Functions specific to a site.

(function($) {
    $(document).ready(function() {
	// Place document manipulation code here
	Cufon.replace('h1');

	// CTA hover states
	var cats = $('#ctas');
	if(cats.length != 0) {
	    $('li#store-locator a').hover(function(e) {
		var e_img = $('li#store-locator a img');
		if(e_img.attr('src') == '/sites/default/files/store-locator-rest.png') {
		    e_img.attr('src', '/sites/default/files/store-locator-hover.png');
		}
		else {
		    e_img.attr('src', '/sites/default/files/store-locator-rest.png');
		}
	    });
	    $('li#view-products a').hover(function(e) {
		var e_img = $('li#view-products a img');
		if(e_img.attr('src') == '/sites/default/files/view-products-rest.png') {
		    e_img.attr('src', '/sites/default/files/view-products-hover.png');
		}
		else {
		    e_img.attr('src', '/sites/default/files/view-products-rest.png');
		}
	    });
	    
	}

    }); 
})(jQuery);
