document.write('<style type="text/css" media="screen"> ul.gallery { display: none; } </style>');

$(document).ready(
      function(){
			
          	$('ul#photos').innerfade({
              speed: 1000,
              timeout: 5000,
              type: 'sequence',
              containerheight: 	'488px',
              slide_timer_on: 	'no',
              slide_ui_parent: 	'photos',
              slide_ui_text:	'null',
              pause_button_id: 	'null',
              slide_nav_id:		'slide_nav'
          	});
          	$.setOptionsButtonEvent();
			
			$('ul#photos').css('display', 'block');
		});

	    $("select")
			.livequery('change', function(event) { // livequery binds the event after the dom had been updated
	        var thisEl = $(this);
			if (thisEl.val() == "6 x 9") {
				thisEl.siblings(".thumbFramed").hide();
				thisEl.siblings(".desc").hide();
				thisEl.siblings(".thumb").show();
			}
			if (thisEl.val() == "6 x 9 w/ Frame") {
				thisEl.siblings(".thumb").hide();
				thisEl.siblings(".thumbFramed").show();
				thisEl.siblings(".desc").show();
			}
	   
	});		


