jQuery(document).ready(function() {
	// open links marked external in new windows
	jQuery('a[rel="external"]').click( function() {
		window.open( jQuery(this).attr('href') );
		return false;
	});

	// animate 'shop for wine' sign
	jQuery('a.shop-wine').hover(
	function() {
	jQuery(this).stop().animate({top: -10}, "fast");
	},
	function() {
	jQuery(this).stop().animate({top: -20}, "fast");
	});

    // configure and activate homepage feature cycle
    jQuery('.slideshow').cycle({
		fx: 'fade',
		timeout: 10000,
		pager: '#feature-nav'
	});

	jQuery("a[rel^='prettyPhoto']").prettyPhoto( { show_title: false, theme: 'facebook' });
	
	DD_roundies.addRule('#content #main .article, #content #sidebar .widget, #content #latest-post, #content #upcoming-events, #content #main .pages ul, #content #main .pages ol', '10px'); 
	DD_roundies.addRule('#header ul#nav li a, #content #main .article #comments ol li, #content #main .oldernewer a, #content #sidebar .widget ul.gce-list li p.gce-list-title, #content #upcoming-events ul.gce-list li p.gce-list-title, #content #feature-frame .slideshow .slide .details p a', '5px');
});
