// JavaScript Document
// Fancybox Popups

$(document).ready(function() {
		
	//Ring size chart	
	$("a#inline").fancybox({ 
		'hideOnContentClick': true, 
		'imageScale': true, 
		'centerOnScroll': false, 
		'frameWidth': 696,
		'frameHeight': 936
	}); 
	
	//Press features	
	$("a.press-popup").fancybox({ 
		'hideOnContentClick': true, 
		'imageScale': true, 
		'centerOnScroll': false, 
		'frameWidth': 696,
		'frameHeight': 936
	}); 
	
	//Embedded Video
	$("a.video-popup").fancybox({ 
		'hideOnContentClick': true, 
		'imageScale': true, 
		'centerOnScroll': false, 
		'frameWidth': 670,
		'frameHeight': 510
	}); 
});  