jQuery.noConflict();
 
//jQuery(document).ready(function(){
	//jQuery(function() {
		//jQuery("#product-collateral").tabs();
	//});
	
jQuery(document).ready(function(){
	document.getElementById('search').focus();
});
    jQuery('#slideshow').cycle({
		containerResize:0,//resize container to fit largest slide?
		fx:       'fade',
        timeout:   5000,
		fit: 1,
		width: 700,
		height:250,
        after:     function() {
            jQuery('#caption').html(this.alt);
        }

	});

//});

function requestBulk(productId){
	/*jQuery.ajax({
		type: "POST",
		url: "/contacts/",
		data: "requestbulk="+ productId,
		success: function(results){
			alert(results);
			//window.location='/contacts/';
		 }
		}); // End .ajax fucntion
	*/
	window.location="/contacts/?requestbulk="+productId;
}
function inquire(productId){
	window.location="/contacts/?inquire="+productId;
}

function gcookie(){
	jQuery.ajax({
		type: "POST",
		url: "/matrixajax.php",
		data: "do=googletranslate",
		success: function(results){
			//alert(results);
			window.location='/';
		 },
		 error: function(){
			alert('Could not set the cookie');
		  }
		}); // End .ajax fucntion
}

