$(function(){
	$('#tabs').tabs();
	$('#dialog_link, ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);
	$(".popup").colorbox({iframe:true, width:450, height:430});
	$(".specs").colorbox();
});

$.fn.cycle.defaults.timeout = 6000;
$(function() {
    $('#s4').before('<div id="specials-nav" class="specials-nav">').cycle({
        timeout: 4000,
        speed: 2500,
        pager:  '#specials-nav'
    });
});
function onBefore() {
    $('#output').html("Scrolling image:<br>" + this.src);
}
function onAfter() {
    $('#output').html("Scroll complete for:<br>" + this.src)
        .append('<h3>' + this.alt + '</h3>');
}

$(document).ready( function() {
	$(".page-home input[type='radio'],.page-home input[type='checkbox']").custCheckBox();
	$('select').styledSelect();
	$('.striped tr:odd').addClass('odd');
	$('.striped tr:even').addClass('even');
	$('.striped li:odd').addClass('odd');
	$('.striped li:even').addClass('even');
})
