jQuery(function($){
	/* colorbox */
	$('.colorbox').colorbox();
	$('.cbox_inline').colorbox({inline: true});

	/* rounding corners */
	$('.widget').corner();
	$('.feature').corner();

	/* toggle purchse info on piece details page */
	$('.purchasetoggle').click(function() {
	  $('.purchaseinfo').toggle('400', function() {
	  });
	});
});

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

/* homepage slider */
$(document).ready(function(){
    $('#features').bxSlider({
	    mode: 'fade',
        pager: true,
        pagerSelector: '#pager',
        controls: false, // how next/prev arrows?
        speed: 500, // how fast is the transition
        auto: true, // go automatically
        pause: 8000, // how many miliseconds until we switch to next slide
        randomStart: true,
        autoHover: true, // true = pause on mouseover
    });
});

