$(document).ready(function(){

	$('a.ipodselector-button').click(function(){
		$('#ipod-version').slideToggle('slow');
		$('#bluetooth-version').slideUp('fast');
		return false;
	});	
	
	$('a.bluetoothselector-button').click(function(){
		$('#bluetooth-version').slideToggle('slow');
		$('#ipod-version').slideUp('fast');
		return false;
	});

	$(".open-warranty").click(function(){
		$("#warranty").slideToggle("slow");
		$(this).toggleClass("close-warranty"); return false;
	});
	
	$(".open").click(function(){
		$("#more-photos").slideToggle("slow");
		$(this).toggleClass("close"); return false;
	});
	
	 
});