$(function() {  
if ($('#youtube_player')) {
	var isAppleMobile = navigator.userAgent.match(/(iPad|iPod|iPhone)/i) != null; 
	if (isAppleMobile) {
		$('#howcast_player').hide();
		$('#youtube_player').show();
	}
}
if ($('#photo_haut')) {
  $("#banner-imgs").cycle({
    fx: 'fade',
    speed: '500',
    next: '#arrow_right',
    prev: '#arrow_left',
    timeout: 5000,
	pause: 1
  });
  $('#subscribe_btn').click(function () { $('#subscribe_box').slideToggle('fast'); });
}
});