jQuery(document).ready(function() {
	jQuery('#pics').cycle({ 
		fx:    'fade', 
		speed:    5000, 
		timeout:  2000,
		random: 1
	});
	
	
	jQuery('.share_box .share_button').click(function() {
		
		if (jQuery('.share_facebook', jQuery(this)).length > 0) {
			window.open('http://www.facebook.com/sharer.php?u=' + window.location, 'blank');
		} else if (jQuery('.share_twitter', jQuery(this)).length > 0) {
			window.open('http://twitter.com/share?url=' + window.location, 'blank');
		} else if (jQuery('.share_hyves', jQuery(this)).length > 0) {
			window.open('http://www.hyves.nl/profilemanage/add/tips/?name=Fris!+Sieraden&amp;text=' + window.location + '&amp;type=12', 'blank');
		}
		
		return false;
	});
});

