jQuery(document).ready(function(){
								
	jQuery.colorbox({
		open: true, 
		width:550, 
		height:580, 
		inline:true,
		opacity:.25,
		close:'',
		href:'#instock',
		onCleanup:function(){ jQuery("#instock").hide(); }
	});

	jQuery("#instock").show();	
	jQuery("#closeinstock").click(function() {
		jQuery.colorbox.close();
			
	});

});
