// Text replacement
// Dependancy: cufon.js, Bell_Gothic_Std_700_open.font.js
Cufon.replace('#menu-header a',{hover:true});
Cufon.replace('#menu-side a',{hover:true});
Cufon.replace('h1');
Cufon.replace('h3');
Cufon.replace('h2.entry-title');
Cufon.replace('h3.widget-title');
Cufon.replace('#comments h3');
Cufon.replace('.navigation a',{hover:true});

// This is for the slider on the Home page. You'll need to add lines to add new links to the nav.
// Dependancy: jquery.slider.js
if(!window.slider) 
		var slider={};
		slider.data=[
			{"id":"slide-img-1","client":"nature beauty","desc":"nature beauty photography"},
			{"id":"slide-img-2","client":"nature beauty","desc":"add your description here"},
			{"id":"slide-img-3","client":"nature beauty","desc":"add your description here"},
			{"id":"slide-img-4","client":"nature beauty","desc":"add your description here"},
			{"id":"slide-img-5","client":"nature beauty","desc":"add your description here"}
		];
		
		
// jQuery functions
// Use jQuery instead of $ because of Wordpress namespace conflict with Prototype
jQuery(function(){

	// News ticker on Home page
	jQuery('#marquee').marquee();
	
	// Contact form
	jQuery('#submit').click(function(){
		jQuery('#submitted').val('yes');
	});

});




