$(document).ready(function() {
	$(".bundle_arrow_left").click(slideBundleLeft);
	$(".bundle_arrow_right").click(slideBundleRight);
});

function slideBundleLeft() {
	var cur_ml = parseInt($(".scene_bundle_container").css('margin-left').replace('px', ''));
	var new_ml = parseInt(cur_ml+600) + "px";
    $(".scene_bundle_container").animate({
    	marginLeft : new_ml
    }, 1000);
	return false;
}

function slideBundleRight() {
	var cur_ml = parseInt($(".scene_bundle_container").css('margin-left').replace('px', ''));
	var new_ml = parseInt(cur_ml-600) + "px";

	$(".scene_bundle_container").animate({
	    marginLeft :  new_ml
	}, 1000);
    return false;
}
