jQuery.noConflict();

jQuery(document).ready(function(){
	
	//AVIA SLIDER FOR HOMEPAGE
	jQuery('#frontpage-slider').aviaSlider({
		blockSize: {height: 80, width:80},
		autorotation: true,
		autorotationSpeed:3,
		betweenBlockDelay:60, //delay between appearance of blocks
		animationSpeed:900, //how long to take for block to fade
		slideControlls: '', //or 'items'
		appendControlls:"", //or body or #id-of-choice
		transition: 'slide', // or fade or drop
		display: 'diagonaltop', //or diagonalbottom, topleft, bottomright, random, all
		switchMovement: true, //change direction for every 2nd transition
		showText: true, //display text captions
		backgroundOpacity:0.8	//opacity of text caption					  
	});
	
				
	
});


jQuery(window).load(function() {
        jQuery('.randomfrontpage').equalHeightColumns();
});



// VPASP DEFAULT FUNCTIONS NORMALLY INCLUDED IN SHOPPAGE_HEADER
function checkjavascriptstatus(){
	var checkingurl="shopcheckjavascript.asp";
	var pars = '';
	var url = checkingurl + '?' + pars;
	new Ajax.Request(url, {method: 'post',
		onSuccess: function(transport) {
		}
	}); 
}

function toggleMe(a){
	var e=document.getElementById(a);
	if(e.style.display=="none"){
		e.style.display="block"
	} else {
		e.style.display="none"
	}
}

function clearfield(pform){
	if (pform.keyword.value == "search this site")
		pform.keyword.value = "";
}
// END VPASP DEFAULT FUNCTIONS
