var ias = {
	resize : function() {
		var window_width	= $(window).width();
		if(window_width	< 1345) {
			var diff	= 1345 - window_width;
			$('#content').css('margin-left','-'+diff+'px');	
		} else {
			$('#content').css('margin-left','auto');
		}		
	},
		
	scrollTo : function(to) {
		if($.trim(to) == '#news' || $.trim(to) == '#contact') {
			$.scrollTo(to, 1000 );		
		} else {
			$.scrollTo(to, 2000, {easing:'easeOutBack'} );
		}

	},

	get_product : function(product) {
		//$('#loading').show();
		jQuery('#productMain').fadeOut('slow',function() {
			$.ajax({
			   type: "GET",
			   url: product + ".html",
			   success: function(msg){
						//$('#loading').hide();
						$('#productMain').html(msg);
						jQuery('#productMain').slideDown();
						$("a[rel=example_group]").fancybox({
							'transitionIn'		: 'none',
							'transitionOut'		: 'none'
						});	
			   }
			 });
		 });
	}
	
}
