/*
Description: Promotion
Author: wpworks.net
Author URI: http://wpworks.net
*/


WPWPromotion = function($){
	var $ = jQuery;
	var main = this;
	var bigImg = $('#promotion-big-img');

	function resizeImage(){
		if(bigImg.length == 0)return;
		
		WPW.ResizeImage({
			img:bigImg, 
			t_w:function(){return WPW.cW - 250;},
			t_h:function(){return WPW.cH;},
			scale_mode:"fill",
			position_mode:"tl",
			force_fit: true,
			canvas_check: false
		});
	}
	
	WPW.body.bind('RefreshSize', function(){resizeImage();});
}


WPW.Core.register("WPWPromotion");
