Cufon.replace('#navigation', {fontFamily: 'Gotham', hover: true});
Cufon.replace('h2', {fontFamily: 'Gotham', hover: true});

$(document).ready(function() {
	var search_label = 'Search products...';
	
	$('#SearchForm input').val(search_label).focus(function() {
		if(this.value == search_label) this.value = '';
	}).blur(function() {
		if(this.value == '') this.value = search_label;
	});
	
	$('#header #image-slide').crossSlide(
	{
  	sleep: 10,
  	fade: 2
	},[
  	{ src: 'http://316.fi/assets/images/headers/header01.jpg' },
  	{ src: 'http://316.fi/assets/images/headers/header02.jpg' },
	]);
	
});
