$(function() {
	
	// Fancybox
	$("#velocity-nav a, #accessories-nav a, #swatches a").fancybox({
		'titleShow': false
	});
	
	
	//  Homepage Slideshow
	$('#home-slides').cycle({
		fx:      'fade',
		timeout:  4000
	});	
	
	
	// Product Detail Slideshow	
	$('#slides').after('<ul id="thumbs" class="nav">').cycle({ 
	    fx:     'fade',
	    timeout: 0,
	    speed:  'fast', 
	    pager:  '#thumbs', 

	    // callback fn that creates a thumbnail to use as pager anchor 
	    pagerAnchorBuilder: function(idx, slide) { 
	        return '<li><a href="#"><img src="' + slide.src + '" width="130" height="70" /></a></li>'; 
	    } 
	});
		

	// http://j.mp/jquery-target-blank
	$('a[href^="http://"], a[rel="external"]').each(function(){
		$(this).attr({
			target: "_blank",
			title: this.href + " (opens in a new window)"
		});
	});

	$('a[href$=".pdf"]').attr({
		target: "_blank",
		title: "PDF File"
	});
	

	// Facebook Like Button [dynamic insertion]
	$('#fb-like').replaceWith('<iframe id="fb-like" src="//www.facebook.com/plugins/like.php?app_id=IDNUMBER&amp;href=' + window.location +'&amp;send=false&amp;layout=button_count&amp;width=450&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=21" scrolling="no" frameborder="0" allowTransparency="true"></iframe>');
	
	
});
























