// Name: CUFON
	
	Cufon.replace('.menu li a, h1, h2, h3, h4, .itemBlock span', {hover: true});

// --------------------------------------------------

// Name: Blur Anchors

	function blurAnchors(){
		if(document.getElementsByTagName) {
			var a = document.getElementsByTagName("a");
			//collect all anchors A
			for(var i = 0; i < a.length; i++){
				// mouse onfocus, blur anchors
				a[i].onfocus = function(){this.blur();};
			}
		}	
	}
	window.onload = blurAnchors; 
	
// --------------------------------------------------

// Name: smoothDivScroll

	$(window).load(function() {
		$("div#slider").smoothDivScroll({ autoScroll: "always", autoScrollDirection: "endlessloopright", autoScrollStep: 1, autoScrollInterval: 30});
	});

// --------------------------------------------------

// Name:


$(document).ready(function(){
   if($('#gallery a').length > 0){
       $('#gallery a').lightBox();
   } 
   if($('#validateForm').length > 0){
       $("#validateForm").validate();
   }
});
