$(document).ready(function() {
	$('#btnSearch').click(function() {
		if ($("#mySearch").valid()) {
			return true;
		}
		return false;
	});

	// Bookmark site
	if(window.opera) {
		if ($("a.bookmark").attr("rel") != ""){
			$("a.bookmark").attr("rel","sidebar");
		} 
	}

	$("a.bookmark").click(function(e){
		e.preventDefault();
		var url = this.href;
		var title = this.title;

		if (window.sidebar) { 
			window.sidebar.addPanel(title, url,"");
		} else if( window.external ) { 
			window.external.AddFavorite( url, title);
		} else if(window.opera) { 
			return false; 
		} else { 
			 alert('Sorry, your browser does not support the requested action,'
			 + ' please add this page manually to your bookmarks.');
		}
	});

	$('.search').focus(function() {
		if (this.value == 'Search') { this.value=''; };
	});

	// print page function
	$('.print').click(function(e){e.preventDefault;window.print()});

});

Cufon.replace('h1')('.inner-content h2')('.post h2')('h3')('#phone');

