			$(document).ready(function(){
				$.fn.colorbox.settings.opacity = "0.4"; 
				$.fn.colorbox.settings.transition = "none";
				$.fn.colorbox.settings.initialWidth = "815";
				
				$("a[href='/product/popups/index-bom.html']").colorbox({initialHeight:"550", href:"/product/popups/index-bom.html"});
				$("a[href='/product/popups/index-change.html']").colorbox({initialHeight:"540", href:"/product/popups/index-change.html"});
				$("a[href='/product/popups/index-collaboration.html']").colorbox({initialHeight:"380", href:"/product/popups/index-collaboration.html"});
				$("a[href='/product/popups/index-compliance.html']").colorbox({initialHeight:"450", href:"/product/popups/index-compliance.html"});
				$("a[href='/product/popups/index-integration.html']").colorbox({initialHeight:"210", href:"/product/popups/index-integration.html"});

				/*$("a[href='/product/popups/vid-change-management.html']").colorbox({initialHeight:"600",width:"835",height:"650", href:"/product/popups/vid-change-management.html"});
				$("a[href='/product/popups/vid-detail-complete-boms.html']").colorbox({initialHeight:"600",width:"835",height:"650", href:"/product/popups/vid-detail-complete-boms.html"});
				$("a[href='/product/popups/vid-detail-items.html']").colorbox({initialHeight:"600",width:"835",height:"650", href:"/product/popups/vid-detail-items.html"});
				$("a[href='/product/popups/vid-detail-change-management.html']").colorbox({initialHeight:"600",width:"835",height:"650", href:"/product/popups/vid-detail-change-management.html"});
				$("a[href='/product/popups/vid-detail-bom-views.html']").colorbox({initialHeight:"600",width:"835",height:"650", href:"/product/popups/vid-detail-bom-views.html"});*/


				$(".popupVideo").click( function(){ 		
					var currentLink = this.href;

					$.fn.colorbox.settings.opacity = "0.4"; 
					$.fn.colorbox.settings.transition = "none";
					var videoWidth = 715;
					var videoHeight = 480;
					var popupWidth = videoWidth+4;
					var popupHeight = videoHeight+124;
					
					
					if (jQuery.browser.msie){
						if(parseInt(jQuery.browser.version) < 8) {
							$.fn.colorbox({href:currentLink, open:true,width:popupWidth,height:popupHeight+30, iframe:true});
							return false;
						}
						else {
							$.fn.colorbox({href:currentLink, open:true,width:popupWidth,height:popupHeight, iframe:true});
							return false;
						}
					}
					else{
						$.fn.colorbox({href:currentLink, open:true,width:popupWidth,height:popupHeight, iframe:true});
						return false;
					}
				});
	
			});
