function ColorBoxWindow(){

	this.init.apply(this, arguments);
}
ColorBoxWindow.prototype.init = function(){
};

ColorBoxWindow.prototype.setWindow = function(prop, width, height){

	if(!width)
		width = "75%";
	if(!height)
		height = "75%";

	$(prop).colorbox(
		{transition:"none", width:width, height:height}
		//{width:width, height:height}
		//{transition:"none"}
	);

};

ColorBoxWindow.prototype.setAutoWindow = function(prop){

	$(prop).colorbox(
		{transition:"none"}
	);
};


