$(function(){
	$('body').removeClass("nojs");
	
	var openPhone = $('#phone img');
	openPhone.bind("click", function () {
		return false;
	});
	openPhone.bind("click", function () {
	if ($('#phone').hasClass('close')) {
	    $('#phone').removeClass('close');
	    $('#phone').addClass('open');
	    $('#phone').animate({ right: "0px" }, 750);
	}
	else if ($('#phone').hasClass('open')) {
	    $('#phone').removeClass('open');
	    $('#phone').addClass('close');
	    $('#phone').animate({ right: "-281px" }, 750);
	}
	});	
})

function imageRotate() {
    $('#image-rotate').innerfade({
        speed: 'slow',
        timeout: 3000,
        type: 'sequence',
        containerheight: '230px'
    });
}


