$(document).ready(function(){

	$('#cycle').cycle({
			fx: 'fade',
			random: 1,
			timeout:  12000 
	});

	$('a.top').click(function(){
		$('html, body').animate({scrollTop: '0px'}, 300);
		return false;
	});
	
	//$("#specifications table td:nth-child(2)").css('width','50');
	       	
});

function expandCollapse() {
for (var i=0; i<expandCollapse.arguments.length; i++) {
var element = document.getElementById(expandCollapse.arguments[i]);
element.style.display = (element.style.display == "none") ? "block" : "none";
}
}

function expand() {
	document.getElementById('multipleGunsInfo').style.display='block';
}	

function collapse() {
	document.getElementById('multipleGunsInfo').style.display='none';
}

